diff options
author | Chris Lattner <sabre@nondot.org> | 2005-12-22 21:16:08 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2005-12-22 21:16:08 +0000 |
commit | 0fcd40f501d99ce50b23f67e578a37f0943dec36 (patch) | |
tree | 4dc788b7d9a2071a2ded4899ec8dfc46191e0faa /lib/Target/Alpha/AlphaISelPattern.cpp | |
parent | cec26fc3bf1f9d177a4befabd278410f0cb7d2b8 (diff) |
remove dead code
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@24965 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/Alpha/AlphaISelPattern.cpp')
-rw-r--r-- | lib/Target/Alpha/AlphaISelPattern.cpp | 13 |
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: |