1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 19:52:54 +01:00

Remove unused code.

llvm-svn: 111154
This commit is contained in:
Bob Wilson 2010-08-16 17:06:03 +00:00
parent f174416619
commit 98641e5a51

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