summaryrefslogtreecommitdiff
path: root/src/jit/arraystack.h
diff options
context:
space:
mode:
authorSergey Andreenko <seandree@microsoft.com>2019-01-08 15:40:50 -0800
committerGitHub <noreply@github.com>2019-01-08 15:40:50 -0800
commit62298e66c2cdd5f7ef237aa0584decb3ae71947a (patch)
tree2888f612b53eeb79e556d3d8a090565287608855 /src/jit/arraystack.h
parent41dfe19d1ffe00edfdaa837a3b46aea5a8036617 (diff)
downloadcoreclr-62298e66c2cdd5f7ef237aa0584decb3ae71947a.tar.gz
coreclr-62298e66c2cdd5f7ef237aa0584decb3ae71947a.tar.bz2
coreclr-62298e66c2cdd5f7ef237aa0584decb3ae71947a.zip
Use `saveNext` unwind opcode on arm64. (#21683)
* Use `saveNext` opcode on arm64. * Support using of `save_next` on int/float border. * Delete the extra requirement that an epilog sequences can't start from `save_next`. * response feedback
Diffstat (limited to 'src/jit/arraystack.h')
-rw-r--r--src/jit/arraystack.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/jit/arraystack.h b/src/jit/arraystack.h
index 60f01351d2..5c82705f7b 100644
--- a/src/jit/arraystack.h
+++ b/src/jit/arraystack.h
@@ -122,7 +122,7 @@ public:
}
// return a reference to the i'th from the bottom
- T BottomRef(int indx)
+ T& BottomRef(int indx)
{
assert(tosIndex > indx);
return data[indx];