mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-04 10:30:01 +00:00
Use the Copy we defined above here.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@183808 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
1d1862958c
commit
3ce2a98c89
@ -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,
|
||||
|
Loading…
x
Reference in New Issue
Block a user