1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-22 04:22:57 +02:00

Remove dead code

llvm-svn: 28261
This commit is contained in:
Evan Cheng 2006-05-12 19:03:56 +00:00
parent e020b812f3
commit 871a83d4d0

View File

@ -806,10 +806,7 @@ void X86DAGToDAGISel::Select(SDOperand &Result, SDOperand N) {
case MVT::i32: case MVT::i32:
Opc = X86::MOV32to32_; Opc = X86::MOV32to32_;
VT = MVT::i32; VT = MVT::i32;
if (NVT == MVT::i16) Opc2 = X86::TRUNC_R32_R8;
Opc2 = X86::TRUNC_R32_R16;
else
Opc2 = X86::TRUNC_R32_R8;
break; break;
} }