Remove dead code.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@28938 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Evan Cheng 2006-06-27 20:34:14 +00:00
parent 14c299ebca
commit 4df24f2caf

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