Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / llvm / test / Verifier / x86_intr.ll
blobd704fa2d1ab94e2db241de231b6eba425600adb0
1 ; RUN: not llvm-as < %s 2>&1 | FileCheck %s
3 ; CHECK: Calling convention parameter requires byval
4 ; CHECK-NEXT: ptr @non_ptr_arg0
5 define x86_intrcc void @non_ptr_arg0(i32) {
6   ret void
9 ; CHECK: Calling convention parameter requires byval
10 ; CHECK-NEXT: ptr @non_byval_ptr_arg0
11 define x86_intrcc void @non_byval_ptr_arg0(ptr) {
12   ret void
15 ; CHECK: Calling convention parameter requires byval
16 ; CHECK-NEXT: ptr @non_ptr_arg0_decl
17 declare x86_intrcc void @non_ptr_arg0_decl(i32)
19 ; CHECK: Calling convention parameter requires byval
20 ; CHECK-NEXT: ptr @non_byval_ptr_arg0_decl
21 declare x86_intrcc void @non_byval_ptr_arg0_decl(ptr)