diff options
author | Jakob Stoklund Olesen <stoklund@2pi.dk> | 2013-05-19 19:14:24 +0000 |
---|---|---|
committer | Jakob Stoklund Olesen <stoklund@2pi.dk> | 2013-05-19 19:14:24 +0000 |
commit | 00ce0f6512a36ff18fcd223dfebc5469e3600652 (patch) | |
tree | 7b7557aa58689dac970187d779c43467d5d40db1 /lib/Target | |
parent | 675b9e9f3d567bdf1a31ce9d9ce2451ae09dc9fa (diff) | |
download | external_llvm-00ce0f6512a36ff18fcd223dfebc5469e3600652.zip external_llvm-00ce0f6512a36ff18fcd223dfebc5469e3600652.tar.gz external_llvm-00ce0f6512a36ff18fcd223dfebc5469e3600652.tar.bz2 |
Handle i64 FrameIndex nodes in SPARC v9 mode.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@182216 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target')
-rw-r--r-- | lib/Target/Sparc/SparcInstrInfo.td | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/Sparc/SparcInstrInfo.td b/lib/Target/Sparc/SparcInstrInfo.td index baefb06..740390f 100644 --- a/lib/Target/Sparc/SparcInstrInfo.td +++ b/lib/Target/Sparc/SparcInstrInfo.td @@ -463,7 +463,7 @@ defm ADD : F3_12<"add", 0b000000, add>; def LEA_ADDri : F3_2<2, 0b000000, (outs IntRegs:$dst), (ins MEMri:$addr), "add ${addr:arith}, $dst", - [(set i32:$dst, ADDRri:$addr)]>; + [(set iPTR:$dst, ADDRri:$addr)]>; let Defs = [ICC] in defm ADDCC : F3_12<"addcc", 0b010000, addc>; |