[llvm] 50d0804 - [X86] Replace X32 check prefix with X86

Simon Pilgrim via llvm-commits llvm-commits at lists.llvm.org
Sat Jun 11 07:16:43 PDT 2022


Author: Simon Pilgrim
Date: 2022-06-11T15:12:49+01:00
New Revision: 50d0804ac787f563f46ab8a2a614f82bfb49fe18

URL: https://github.com/llvm/llvm-project/commit/50d0804ac787f563f46ab8a2a614f82bfb49fe18
DIFF: https://github.com/llvm/llvm-project/commit/50d0804ac787f563f46ab8a2a614f82bfb49fe18.diff

LOG: [X86] Replace X32 check prefix with X86

We try to use X32 only for gnux32 triple cases

Added: 
    

Modified: 
    llvm/test/CodeGen/X86/vec_insert-7.ll

Removed: 
    


################################################################################
diff  --git a/llvm/test/CodeGen/X86/vec_insert-7.ll b/llvm/test/CodeGen/X86/vec_insert-7.ll
index b7a63b6cac824..0d242bf326f11 100644
--- a/llvm/test/CodeGen/X86/vec_insert-7.ll
+++ b/llvm/test/CodeGen/X86/vec_insert-7.ll
@@ -1,15 +1,15 @@
 ; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
-; RUN: llc < %s -mtriple=i686-apple-darwin9 -mattr=+mmx,+sse4.2 | FileCheck %s --check-prefix=X32
+; RUN: llc < %s -mtriple=i686-apple-darwin9 -mattr=+mmx,+sse4.2 | FileCheck %s --check-prefix=X86
 ; RUN: llc < %s -mtriple=x86_64-apple-darwin9 -mattr=+mmx,+sse4.2 | FileCheck %s --check-prefix=X64
 
 ; MMX insertelement is not available; these are promoted to xmm.
 ; (Without SSE they are split to two ints, and the code is much better.)
 
 define x86_mmx @mmx_movzl(x86_mmx %x) nounwind {
-; X32-LABEL: mmx_movzl:
-; X32:       ## %bb.0:
-; X32-NEXT:    movq {{\.?LCPI[0-9]+_[0-9]+}}, %mm0
-; X32-NEXT:    retl
+; X86-LABEL: mmx_movzl:
+; X86:       ## %bb.0:
+; X86-NEXT:    movq {{\.?LCPI[0-9]+_[0-9]+}}, %mm0
+; X86-NEXT:    retl
 ;
 ; X64-LABEL: mmx_movzl:
 ; X64:       ## %bb.0:


        


More information about the llvm-commits mailing list