summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsjsujinkim <sjsujin.kim@samsung.com>2017-06-02 10:25:34 +0900
committersjsujinkim <sjsujin.kim@samsung.com>2017-06-02 10:25:34 +0900
commit034d68202d17bd97624c54a52caa3ec1ad4c5d9b (patch)
tree80d1f82487bf28974cf7b4ee60d878b7e53114f1
parentc540901ad3f658df844b8847df6c4c185f7c75c0 (diff)
downloadcoreclr-034d68202d17bd97624c54a52caa3ec1ad4c5d9b.tar.gz
coreclr-034d68202d17bd97624c54a52caa3ec1ad4c5d9b.tar.bz2
coreclr-034d68202d17bd97624c54a52caa3ec1ad4c5d9b.zip
Modify comments
-rw-r--r--src/jit/regset.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/jit/regset.cpp b/src/jit/regset.cpp
index 56f99054c7..24c9bf9e19 100644
--- a/src/jit/regset.cpp
+++ b/src/jit/regset.cpp
@@ -3323,7 +3323,8 @@ void Compiler::tmpPreAllocateTemps(var_types type, unsigned count)
#ifdef _TARGET_ARM_
if (type == TYP_DOUBLE)
{
- // Adjust tmpSize in case it needs alignment
+ // Adjust tmpSize to accommodate possible alignment padding.
+ // Note that at this point the offsets aren't yet finalized, so we don't yet know if it will be required.
tmpSize += TARGET_POINTER_SIZE;
}
#endif // _TARGET_ARM_