diff options
author | Dan Gohman <gohman@apple.com> | 2008-04-14 17:55:48 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2008-04-14 17:55:48 +0000 |
commit | 64fd1a959022d190ca01e9a8ab665ea97c03546c (patch) | |
tree | d5a822443938fb4586d9013fa86f1549cde285cb /lib/Target/ARM/ARMISelLowering.h | |
parent | b369e8de1e2ee83f2cec829a86684ee382da6853 (diff) | |
download | external_llvm-64fd1a959022d190ca01e9a8ab665ea97c03546c.zip external_llvm-64fd1a959022d190ca01e9a8ab665ea97c03546c.tar.gz external_llvm-64fd1a959022d190ca01e9a8ab665ea97c03546c.tar.bz2 |
Fix const-correctness issues with the SrcValue handling in the
memory intrinsic expansion code.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@49666 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/ARM/ARMISelLowering.h')
-rw-r--r-- | lib/Target/ARM/ARMISelLowering.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Target/ARM/ARMISelLowering.h b/lib/Target/ARM/ARMISelLowering.h index 58d8d8c..13f5c08 100644 --- a/lib/Target/ARM/ARMISelLowering.h +++ b/lib/Target/ARM/ARMISelLowering.h @@ -149,8 +149,8 @@ namespace llvm { SDOperand Dst, SDOperand Src, SDOperand Size, unsigned Align, bool AlwaysInline, - Value *DstSV, uint64_t DstOff, - Value *SrcSV, uint64_t SrcOff); + const Value *DstSV, uint64_t DstOff, + const Value *SrcSV, uint64_t SrcOff); }; } |