1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-25 20:23:11 +01:00

Remove dead code.

llvm-svn: 28938
This commit is contained in:
Evan Cheng 2006-06-27 20:34:14 +00:00
parent 6f9d475186
commit a37a2f781e

View File

@ -277,12 +277,6 @@ def i32immSExt8 : PatLeaf<(i32 imm), [{
return (int32_t)N->getValue() == (int8_t)N->getValue();
}]>;
def i16immZExt8 : PatLeaf<(i16 imm), [{
// i16immZExt8 predicate - True if the 16-bit immediate fits in a 8-bit zero
// extended field.
return (uint16_t)N->getValue() == (uint8_t)N->getValue();
}]>;
// Helper fragments for loads.
def loadiPTR : PatFrag<(ops node:$ptr), (iPTR (load node:$ptr))>;