[llvm] 63e3074 - [X86] aligned-variadic.ll - replace X32 checks with X86. NFC.

Simon Pilgrim via llvm-commits llvm-commits at lists.llvm.org
Thu Jan 4 09:23:27 PST 2024


Author: Simon Pilgrim
Date: 2024-01-04T17:17:07Z
New Revision: 63e30747815a20e9976c5bcedb81e8b44cbec582

URL: https://github.com/llvm/llvm-project/commit/63e30747815a20e9976c5bcedb81e8b44cbec582
DIFF: https://github.com/llvm/llvm-project/commit/63e30747815a20e9976c5bcedb81e8b44cbec582.diff

LOG: [X86] aligned-variadic.ll - replace X32 checks with X86. NFC.

We try to use X32 for gnux32 triples only.

Added: 
    

Modified: 
    llvm/test/CodeGen/X86/aligned-variadic.ll

Removed: 
    


################################################################################
diff  --git a/llvm/test/CodeGen/X86/aligned-variadic.ll b/llvm/test/CodeGen/X86/aligned-variadic.ll
index 28cfff9d85a683..bc60662def2bf2 100644
--- a/llvm/test/CodeGen/X86/aligned-variadic.ll
+++ b/llvm/test/CodeGen/X86/aligned-variadic.ll
@@ -1,5 +1,5 @@
 ; RUN: llc < %s -mtriple=x86_64-apple-darwin -stack-symbol-ordering=0 | FileCheck %s -check-prefix=X64
-; RUN: llc < %s -mtriple=i686-apple-darwin -stack-symbol-ordering=0 | FileCheck %s -check-prefix=X32
+; RUN: llc < %s -mtriple=i686-apple-darwin -stack-symbol-ordering=0 | FileCheck %s -check-prefix=X86
 
 %struct.Baz = type { [17 x i8] }
 %struct.__va_list_tag = type { i32, i32, ptr, ptr }
@@ -13,8 +13,8 @@ entry:
   %overflow_arg_area = load ptr, ptr %overflow_arg_area_p, align 8
   %overflow_arg_area.next = getelementptr i8, ptr %overflow_arg_area, i64 24
   store ptr %overflow_arg_area.next, ptr %overflow_arg_area_p, align 8
-; X32: leal    68(%esp), [[REG:%.*]]
-; X32: movl    [[REG]], 16(%esp)
+; X86: leal    68(%esp), [[REG:%.*]]
+; X86: movl    [[REG]], 16(%esp)
 ; X64: leaq    256(%rsp), [[REG:%.*]]
 ; X64: movq    [[REG]], 184(%rsp)
 ; X64: leaq    176(%rsp), %rdi


        


More information about the llvm-commits mailing list