diff options
author | Jim Grosbach <grosbach@apple.com> | 2010-11-29 22:40:58 +0000 |
---|---|---|
committer | Jim Grosbach <grosbach@apple.com> | 2010-11-29 22:40:58 +0000 |
commit | a0bb25311925079117de74e2e5a5fba8be4e91b4 (patch) | |
tree | 292672742ad6764bbd4b27aa6ca42fc2934df0cf | |
parent | 59127b2a4e1b35b5c9777cb3dd9e4ac6e22b3ffc (diff) | |
download | external_llvm-a0bb25311925079117de74e2e5a5fba8be4e91b4.zip external_llvm-a0bb25311925079117de74e2e5a5fba8be4e91b4.tar.gz external_llvm-a0bb25311925079117de74e2e5a5fba8be4e91b4.tar.bz2 |
Nuke dead isCodeGenOnly annotation and extraneous comment.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@120338 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Target/ARM/ARMInstrThumb2.td | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/Target/ARM/ARMInstrThumb2.td b/lib/Target/ARM/ARMInstrThumb2.td index 2d7c5f9..cef207f 100644 --- a/lib/Target/ARM/ARMInstrThumb2.td +++ b/lib/Target/ARM/ARMInstrThumb2.td @@ -2925,11 +2925,10 @@ def t2B : T2XI<(outs), (ins brtarget:$target), IIC_Br, let Inst{10-0} = target{10-0}; } -let isNotDuplicable = 1, isIndirectBranch = 1, - isCodeGenOnly = 1 in { // $id doesn't exist in asmstring, should be lowered. +let isNotDuplicable = 1, isIndirectBranch = 1 in { def t2BR_JT : tPseudoInst<(outs), (ins GPR:$target, GPR:$index, i32imm:$jt, i32imm:$id), - SizeSpecial, IIC_Br,// "mov\tpc, $target$jt", + SizeSpecial, IIC_Br, [(ARMbr2jt GPR:$target, GPR:$index, tjumptable:$jt, imm:$id)]>; // FIXME: Add a non-pc based case that can be predicated. |