[X86] Add verify-machineinstrs checks to baseptr tests
authorSimon Pilgrim <llvm-dev@redking.me.uk>
Tue, 21 Mar 2023 13:24:47 +0000 (13:24 +0000)
committerSimon Pilgrim <llvm-dev@redking.me.uk>
Tue, 21 Mar 2023 13:24:47 +0000 (13:24 +0000)
Help catch regressions from D145650 that were only noticed on EXPENSIVE_CHECKS builds

llvm/test/CodeGen/X86/i386-baseptr.ll
llvm/test/CodeGen/X86/x86-64-baseptr.ll

index 8baa16c..baae07e 100644 (file)
@@ -1,5 +1,5 @@
 ; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
-; RUN: llc -mtriple=i386-pc-linux -stackrealign < %s | FileCheck %s
+; RUN: llc -mtriple=i386-pc-linux -stackrealign -verify-machineinstrs < %s | FileCheck %s
 
 declare i32 @helper() nounwind
 define void @base() #0 {
index 914a5a4..dbd04f2 100644 (file)
@@ -1,6 +1,6 @@
 ; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
-; RUN: llc -mtriple=x86_64-pc-linux -stackrealign < %s | FileCheck %s
-; RUN: llc -mtriple=x86_64-pc-linux-gnux32 -stackrealign < %s | FileCheck -check-prefix=X32ABI %s
+; RUN: llc -mtriple=x86_64-pc-linux -stackrealign -verify-machineinstrs < %s | FileCheck %s
+; RUN: llc -mtriple=x86_64-pc-linux-gnux32 -stackrealign -verify-machineinstrs < %s | FileCheck -check-prefix=X32ABI %s
 
 ; This should run with NaCl as well ( -mtriple=x86_64-pc-nacl ) but currently doesn't due to PR22655