Skip to content

Commit 5d15b98

Browse files
fixup! [XRay] Fix tail call sleds for AArch64
1 parent cc60644 commit 5d15b98

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llvm/lib/CodeGen/XRayInstrumentation.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -298,7 +298,7 @@ bool XRayInstrumentation::run(MachineFunction &MF) {
298298
InstrumentationOptions op;
299299
// AArch64 and RISC-V support patching tail calls.
300300
op.HandleTailcall = MF.getTarget().getTargetTriple().isAArch64() ||
301-
MF.getTarget().getTargetTriple().isRISCV() ;
301+
MF.getTarget().getTargetTriple().isRISCV();
302302
op.HandleAllReturns = true;
303303
prependRetWithPatchableExit(MF, TII, op);
304304
break;

0 commit comments

Comments
 (0)