Remove unused code.

llvm-svn: 111154
This commit is contained in:
Bob Wilson 2010-08-16 17:06:03 +00:00
parent 8f553757c4
commit 8303fbbcf9
1 changed files with 0 additions and 5 deletions

View File

@ -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);
}]>;