aboutsummaryrefslogtreecommitdiff
path: root/lib/Target/Alpha/AlphaISelPattern.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Target/Alpha/AlphaISelPattern.cpp')
-rw-r--r--lib/Target/Alpha/AlphaISelPattern.cpp13
1 files changed, 0 insertions, 13 deletions
diff --git a/lib/Target/Alpha/AlphaISelPattern.cpp b/lib/Target/Alpha/AlphaISelPattern.cpp
index 44b38282f0..2ce18e1ae3 100644
--- a/lib/Target/Alpha/AlphaISelPattern.cpp
+++ b/lib/Target/Alpha/AlphaISelPattern.cpp
@@ -1600,19 +1600,6 @@ void AlphaISel::Select(SDOperand N) {
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: