diff options
author | Duncan Sands <baldrick@free.fr> | 2012-02-05 14:20:11 +0000 |
---|---|---|
committer | Duncan Sands <baldrick@free.fr> | 2012-02-05 14:20:11 +0000 |
commit | 5b8a1db7ea6510a2589f710d50754599da742de9 (patch) | |
tree | b0fc32da198a889ddd064c49ae7e8597bfe1eab4 /lib/Target/ARM/ARMFastISel.cpp | |
parent | 853066a32af39c4674d47713e64b8ed9859976f9 (diff) |
Persuade GCC that there is nothing worth warning about here (there isn't).
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@149834 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/ARM/ARMFastISel.cpp')
-rw-r--r-- | lib/Target/ARM/ARMFastISel.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/Target/ARM/ARMFastISel.cpp b/lib/Target/ARM/ARMFastISel.cpp index 63c516109e..79c447af2c 100644 --- a/lib/Target/ARM/ARMFastISel.cpp +++ b/lib/Target/ARM/ARMFastISel.cpp @@ -2279,6 +2279,7 @@ bool ARMFastISel::ARMTryEmitSmallMemCpy(Address Dest, Address Src, uint64_t Len) assert (RV == true && "Should be able to handle this load."); RV = ARMEmitStore(VT, ResultReg, Dest); assert (RV == true && "Should be able to handle this store."); + (void)RV; unsigned Size = VT.getSizeInBits()/8; Len -= Size; |