diff options
| author | Jim Grosbach <grosbach@apple.com> | 2010-12-15 19:03:16 +0000 |
|---|---|---|
| committer | Jim Grosbach <grosbach@apple.com> | 2010-12-15 19:03:16 +0000 |
| commit | 23477c2ee5ac54f6b28e3ca92688d9b43296802f (patch) | |
| tree | 6b5e50f9e7f1ce84d0133c5a6a39779eb5e27fc7 /llvm | |
| parent | 11678bd299e196e6c4d762d4ba0cbfc6748ba7cd (diff) | |
| download | bcm5719-llvm-23477c2ee5ac54f6b28e3ca92688d9b43296802f.tar.gz bcm5719-llvm-23477c2ee5ac54f6b28e3ca92688d9b43296802f.zip | |
Tweak a few pseudo-inst pattern base classes.
llvm-svn: 121878
Diffstat (limited to 'llvm')
| -rw-r--r-- | llvm/lib/Target/ARM/ARMInstrThumb2.td | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/llvm/lib/Target/ARM/ARMInstrThumb2.td b/llvm/lib/Target/ARM/ARMInstrThumb2.td index 501ebe886f7..9c01725788a 100644 --- a/llvm/lib/Target/ARM/ARMInstrThumb2.td +++ b/llvm/lib/Target/ARM/ARMInstrThumb2.td @@ -908,7 +908,7 @@ multiclass T2I_ld<bit signed, bits<2> opcod, string opc, let Inst{5-4} = addr{1-0}; // imm } - def pci : tPseudoInst<(outs GPR:$Rt), (ins i32imm:$addr), Size4Bytes, iis, + def pci : t2PseudoInst<(outs GPR:$Rt), (ins i32imm:$addr), Size4Bytes, iis, [(set GPR:$Rt, (opnode (ARMWrapper tconstpool:$addr)))]>; } @@ -2985,17 +2985,17 @@ def t2B : T2XI<(outs), (ins uncondbrtarget:$target), IIC_Br, } let isNotDuplicable = 1, isIndirectBranch = 1 in { -def t2BR_JT : tPseudoInst<(outs), +def t2BR_JT : t2PseudoInst<(outs), (ins GPR:$target, GPR:$index, i32imm:$jt, i32imm:$id), SizeSpecial, IIC_Br, [(ARMbr2jt GPR:$target, GPR:$index, tjumptable:$jt, imm:$id)]>; // FIXME: Add a non-pc based case that can be predicated. -def t2TBB_JT : tPseudoInst<(outs), +def t2TBB_JT : t2PseudoInst<(outs), (ins GPR:$index, i32imm:$jt, i32imm:$id), SizeSpecial, IIC_Br, []>; -def t2TBH_JT : tPseudoInst<(outs), +def t2TBH_JT : t2PseudoInst<(outs), (ins GPR:$index, i32imm:$jt, i32imm:$id), SizeSpecial, IIC_Br, []>; |

