[llvm] 51f154b - [X86] Regenerate fastcc-byval.ll with visible stack math
Simon Pilgrim via llvm-commits
llvm-commits at lists.llvm.org
Fri Dec 9 02:41:02 PST 2022
Author: Simon Pilgrim
Date: 2022-12-09T10:40:49Z
New Revision: 51f154b997975ff1001b45823e903f87070222ad
URL: https://github.com/llvm/llvm-project/commit/51f154b997975ff1001b45823e903f87070222ad
DIFF: https://github.com/llvm/llvm-project/commit/51f154b997975ff1001b45823e903f87070222ad.diff
LOG: [X86] Regenerate fastcc-byval.ll with visible stack math
Allows us to truly see the diff in D138899
Added:
Modified:
llvm/test/CodeGen/X86/fastcc-byval.ll
Removed:
################################################################################
diff --git a/llvm/test/CodeGen/X86/fastcc-byval.ll b/llvm/test/CodeGen/X86/fastcc-byval.ll
index a43f73075d0a..aee07caf4efb 100644
--- a/llvm/test/CodeGen/X86/fastcc-byval.ll
+++ b/llvm/test/CodeGen/X86/fastcc-byval.ll
@@ -1,4 +1,4 @@
-; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
+; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py UTC_ARGS: --no_x86_scrub_sp
; RUN: llc < %s -tailcallopt=false | FileCheck %s
; PR3122
@@ -15,11 +15,11 @@ define fastcc i32 @bar() nounwind {
; CHECK-LABEL: bar:
; CHECK: ## %bb.0:
; CHECK-NEXT: subl $12, %esp
-; CHECK-NEXT: movl $1, {{[0-9]+}}(%esp)
-; CHECK-NEXT: movl {{[0-9]+}}(%esp), %eax
+; CHECK-NEXT: movl $1, 8(%esp)
+; CHECK-NEXT: movl 8(%esp), %eax
; CHECK-NEXT: movl %eax, (%esp)
; CHECK-NEXT: calll _foo
-; CHECK-NEXT: movl {{[0-9]+}}(%esp), %eax
+; CHECK-NEXT: movl 8(%esp), %eax
; CHECK-NEXT: addl $12, %esp
; CHECK-NEXT: retl
%V = alloca %struct.MVT
More information about the llvm-commits
mailing list