[llvm] bb86496 - X86: Fix asserts only test

Matt Arsenault via llvm-commits llvm-commits at lists.llvm.org
Wed Jun 21 07:41:09 PDT 2023


Author: Matt Arsenault
Date: 2023-06-21T10:40:48-04:00
New Revision: bb8649691d241a6206ba268fb91caf7ff512f77a

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

LOG: X86: Fix asserts only test

This test should really check the MIR result rather than rely on the
debug output.

Added: 
    

Modified: 
    llvm/test/CodeGen/X86/remat-phys-dead.ll

Removed: 
    


################################################################################
diff  --git a/llvm/test/CodeGen/X86/remat-phys-dead.ll b/llvm/test/CodeGen/X86/remat-phys-dead.ll
index acf24412a8d97..09f2e4320b6d3 100644
--- a/llvm/test/CodeGen/X86/remat-phys-dead.ll
+++ b/llvm/test/CodeGen/X86/remat-phys-dead.ll
@@ -8,7 +8,7 @@
 
 define i8 @test_remat() {
   ret i8 0
-; CHECK: REGISTER COALESCING
+; CHECK: REGISTER COALESCER
 ; CHECK: Remat: dead $eax = MOV32r0 implicit-def dead $eflags, implicit-def $al
 }
 
@@ -17,7 +17,7 @@ define i8 @test_remat() {
 
 define i32 @test_remat32() {
   ret i32 0
-; CHECK: REGISTER COALESCING
+; CHECK: REGISTER COALESCER
 ; CHECK: Remat: $eax = MOV32r0 implicit-def dead $eflags
 }
 


        


More information about the llvm-commits mailing list