summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormortimer <mortimer@openbsd.org>2019-02-05 02:12:41 +0000
committermortimer <mortimer@openbsd.org>2019-02-05 02:12:41 +0000
commit4c0c0fa9652d162db4231612042537f30f32ba13 (patch)
treee0976ec80d4a40c008603253cb14a43fac598e58
parentsets grew a little, install*.* need to also (diff)
downloadwireguard-openbsd-4c0c0fa9652d162db4231612042537f30f32ba13.tar.xz
wireguard-openbsd-4c0c0fa9652d162db4231612042537f30f32ba13.zip
Zap unneeded argument to BuildMI().
ok dlg@
-rw-r--r--gnu/llvm/lib/Target/X86/X86FrameLowering.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/llvm/lib/Target/X86/X86FrameLowering.cpp b/gnu/llvm/lib/Target/X86/X86FrameLowering.cpp
index 1a8d3b03836..01448023f2a 100644
--- a/gnu/llvm/lib/Target/X86/X86FrameLowering.cpp
+++ b/gnu/llvm/lib/Target/X86/X86FrameLowering.cpp
@@ -1750,7 +1750,7 @@ void X86FrameLowering::emitEpilogue(MachineFunction &MF,
if (X86FI->getSaveArgSize()) {
// LEAVE is effectively mov rbp,rsp; pop rbp
- BuildMI(MBB, MBBI, DL, TII.get(X86::LEAVE64), MachineFramePtr)
+ BuildMI(MBB, MBBI, DL, TII.get(X86::LEAVE64))
.setMIFlag(MachineInstr::FrameDestroy);
} else {
// Pop EBP.