[llvm-commits] CVS: llvm/lib/Target/Alpha/AlphaISelPattern.cpp

Chris Lattner lattner at cs.uiuc.edu
Thu Dec 22 13:15:53 PST 2005



Changes in directory llvm/lib/Target/Alpha:

AlphaISelPattern.cpp updated: 1.193 -> 1.194
---
Log message:

remove dead code


---
Diffs of the changes:  (+0 -13)

 AlphaISelPattern.cpp |   13 -------------
 1 files changed, 13 deletions(-)


Index: llvm/lib/Target/Alpha/AlphaISelPattern.cpp
diff -u llvm/lib/Target/Alpha/AlphaISelPattern.cpp:1.193 llvm/lib/Target/Alpha/AlphaISelPattern.cpp:1.194
--- llvm/lib/Target/Alpha/AlphaISelPattern.cpp:1.193	Thu Dec  1 11:48:51 2005
+++ llvm/lib/Target/Alpha/AlphaISelPattern.cpp	Thu Dec 22 15:15:41 2005
@@ -1600,19 +1600,6 @@
     return;
   }
 
-  case ISD::ImplicitDef:
-    ++count_ins;
-    Select(N.getOperand(0));
-    switch(N.getValueType()) {
-    case MVT::f32: Opc = Alpha::IDEF_F32; break;
-    case MVT::f64: Opc = Alpha::IDEF_F64; break;
-    case MVT::i64: Opc = Alpha::IDEF_I; break;
-    default: assert(0 && "should have been legalized");
-    };
-    BuildMI(BB, Opc, 0,
-            cast<RegisterSDNode>(N.getOperand(1))->getReg());
-    return;
-
   case ISD::EntryToken: return;  // Noop
 
   case ISD::TokenFactor:






More information about the llvm-commits mailing list