diff options
author | Eric Christopher <echristo@apple.com> | 2010-10-17 01:42:53 +0000 |
---|---|---|
committer | Eric Christopher <echristo@apple.com> | 2010-10-17 01:42:53 +0000 |
commit | 7208dbf2d58a8eeff755907494d77af052db207b (patch) | |
tree | 00dc8785d4d3f0bb8b9f09e64216034de599dfcb /lib | |
parent | dc0b0ef6cd593a7eb502ca0842fa1f653cb68140 (diff) | |
download | external_llvm-7208dbf2d58a8eeff755907494d77af052db207b.zip external_llvm-7208dbf2d58a8eeff755907494d77af052db207b.tar.gz external_llvm-7208dbf2d58a8eeff755907494d77af052db207b.tar.bz2 |
Fix comment.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@116680 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Target/ARM/ARMFastISel.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/ARM/ARMFastISel.cpp b/lib/Target/ARM/ARMFastISel.cpp index 7dd11ff..11ef6c2 100644 --- a/lib/Target/ARM/ARMFastISel.cpp +++ b/lib/Target/ARM/ARMFastISel.cpp @@ -758,7 +758,7 @@ bool ARMFastISel::ARMEmitLoad(EVT VT, unsigned &ResultReg, ResultReg = createResultReg(RC); // For now with the additions above the offset should be zero - thus we - // can always fit into an i8. + // can always fit into an i12. assert((Base.Reg == ARM::SP || Offset == 0) && "Offset not zero and not a stack load!"); |