mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-08-07 12:28:24 +00:00
Fix indenting.
That wasn't confusing /at all/... git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@192617 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -644,12 +644,13 @@ bool FastISel::SelectCall(const User *I) {
|
||||
if (Op->isReg()) {
|
||||
Op->setIsDebug(true);
|
||||
BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
|
||||
TII.get(TargetOpcode::DBG_VALUE),
|
||||
false, Op->getReg(), 0, DI->getVariable());
|
||||
TII.get(TargetOpcode::DBG_VALUE), false, Op->getReg(), 0,
|
||||
DI->getVariable());
|
||||
} else
|
||||
BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
|
||||
TII.get(TargetOpcode::DBG_VALUE))
|
||||
.addOperand(*Op).addImm(0)
|
||||
.addOperand(*Op)
|
||||
.addImm(0)
|
||||
.addMetadata(DI->getVariable());
|
||||
} else {
|
||||
// We can't yet handle anything else here because it would require
|
||||
|
Reference in New Issue
Block a user