From 756eca35cfd6ec39f1dd579e048b41999f348a46 Mon Sep 17 00:00:00 2001 From: Tim Northover Date: Tue, 26 Jul 2016 16:45:30 +0000 Subject: GlobalISel: add specialized buildCopy function to MachineInstrBuilder. NFC. llvm-svn: 276763 --- llvm/lib/CodeGen/GlobalISel/RegBankSelect.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'llvm/lib/CodeGen/GlobalISel/RegBankSelect.cpp') diff --git a/llvm/lib/CodeGen/GlobalISel/RegBankSelect.cpp b/llvm/lib/CodeGen/GlobalISel/RegBankSelect.cpp index e9e42b0102b..521bb795682 100644 --- a/llvm/lib/CodeGen/GlobalISel/RegBankSelect.cpp +++ b/llvm/lib/CodeGen/GlobalISel/RegBankSelect.cpp @@ -126,7 +126,7 @@ void RegBankSelect::repairReg( "We are about to create several defs for Dst"); // Build the instruction used to repair, then clone it at the right places. - MachineInstr *MI = MIRBuilder.buildInstr(TargetOpcode::COPY, Dst, Src); + MachineInstr *MI = MIRBuilder.buildCopy(Dst, Src); MI->removeFromParent(); DEBUG(dbgs() << "Copy: " << PrintReg(Src) << " to: " << PrintReg(Dst) << '\n'); -- cgit v1.2.3