From 3ce2a98c89667f9590890880a2e08ff7a9896772 Mon Sep 17 00:00:00 2001 From: Eric Christopher Date: Tue, 11 Jun 2013 23:41:41 +0000 Subject: [PATCH] Use the Copy we defined above here. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@183808 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Target/X86/X86FastISel.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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, -- 2.34.1