OSDN Git Service

Remove dead code.
authorEvan Cheng <evan.cheng@apple.com>
Tue, 27 Jun 2006 20:34:14 +0000 (20:34 +0000)
committerEvan Cheng <evan.cheng@apple.com>
Tue, 27 Jun 2006 20:34:14 +0000 (20:34 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@28938 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/X86/X86InstrInfo.td

index e195f0f..3570140 100644 (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))>;