From: Eric Christopher Date: Tue, 11 Jun 2013 23:41:41 +0000 (+0000) Subject: Use the Copy we defined above here. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=3ce2a98c89667f9590890880a2e08ff7a9896772;p=oota-llvm.git Use the Copy we defined above here. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@183808 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Target/X86/X86FastISel.cpp b/lib/Target/X86/X86FastISel.cpp index 681ee6c735f..295a5771554 100644 --- a/lib/Target/X86/X86FastISel.cpp +++ b/lib/Target/X86/X86FastISel.cpp @@ -1360,11 +1360,11 @@ bool X86FastISel::X86SelectDivRem(const Instruction *I) { // fit neatly into the table above. if (VT.SimpleTy == MVT::i16) { BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, - TII.get(TargetOpcode::COPY), TypeEntry.HighInReg) + TII.get(Copy), TypeEntry.HighInReg) .addReg(Zero32, 0, X86::sub_16bit); } else if (VT.SimpleTy == MVT::i32) { BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, - TII.get(TargetOpcode::COPY), TypeEntry.HighInReg) + TII.get(Copy), TypeEntry.HighInReg) .addReg(Zero32); } else if (VT.SimpleTy == MVT::i64) { BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,