aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Target/ARM
diff options
context:
space:
mode:
authorBob Wilson <bob.wilson@apple.com>2010-08-16 17:06:03 +0000
committerBob Wilson <bob.wilson@apple.com>2010-08-16 17:06:03 +0000
commitbd001e29c82e85cdf88c0da668a20a357ae77015 (patch)
treef57ac8864034a77e1779767123292df61cac77f5 /lib/Target/ARM
parent4b1f1b06671381be6d949bd99b83fe742add41b6 (diff)
downloadexternal_llvm-bd001e29c82e85cdf88c0da668a20a357ae77015.zip
external_llvm-bd001e29c82e85cdf88c0da668a20a357ae77015.tar.gz
external_llvm-bd001e29c82e85cdf88c0da668a20a357ae77015.tar.bz2
Remove unused code.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@111154 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/ARM')
-rw-r--r--lib/Target/ARM/ARMInstrInfo.td5
1 files changed, 0 insertions, 5 deletions
diff --git a/lib/Target/ARM/ARMInstrInfo.td b/lib/Target/ARM/ARMInstrInfo.td
index 2e7757b..aeaf342 100644
--- a/lib/Target/ARM/ARMInstrInfo.td
+++ b/lib/Target/ARM/ARMInstrInfo.td
@@ -234,11 +234,6 @@ def bf_inv_mask_imm : Operand<i32>,
}
/// Split a 32-bit immediate into two 16 bit parts.
-def lo16 : SDNodeXForm<imm, [{
- return CurDAG->getTargetConstant((uint32_t)N->getZExtValue() & 0xffff,
- MVT::i32);
-}]>;
-
def hi16 : SDNodeXForm<imm, [{
return CurDAG->getTargetConstant((uint32_t)N->getZExtValue() >> 16, MVT::i32);
}]>;