[PATCH] D70903: [llvm-exegesis] Fix 44b9942898c7.
Clement Courbet via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Mon Dec 2 06:37:26 PST 2019
courbet created this revision.
courbet added reviewers: pengfei, gchatelet.
Herald added a subscriber: tschuett.
Herald added a project: LLVM.
Add missing stack release instructions in
loadImplicitRegAndFinalize.
Repository:
rG LLVM Github Monorepo
https://reviews.llvm.org/D70903
Files:
llvm/tools/llvm-exegesis/lib/X86/Target.cpp
Index: llvm/tools/llvm-exegesis/lib/X86/Target.cpp
===================================================================
--- llvm/tools/llvm-exegesis/lib/X86/Target.cpp
+++ llvm/tools/llvm-exegesis/lib/X86/Target.cpp
@@ -513,6 +513,7 @@
.addReg(0) // IndexReg
.addImm(0) // Disp
.addReg(0)); // Segment
+ add(releaseStackSpace(4));
return std::move(Instructions);
}
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D70903.231699.patch
Type: text/x-patch
Size: 423 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20191202/ba679fba/attachment.bin>
More information about the llvm-commits
mailing list