mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 03:02:36 +01:00
22 lines
668 B
LLVM
22 lines
668 B
LLVM
|
; RUN: not llvm-as < %s 2>&1 | FileCheck %s
|
||
|
|
||
|
; CHECK: Calling convention parameter requires byval
|
||
|
; CHECK-NEXT: void (i32)* @non_ptr_arg0
|
||
|
define x86_intrcc void @non_ptr_arg0(i32) {
|
||
|
ret void
|
||
|
}
|
||
|
|
||
|
; CHECK: Calling convention parameter requires byval
|
||
|
; CHECK-NEXT: void (i32*)* @non_byval_ptr_arg0
|
||
|
define x86_intrcc void @non_byval_ptr_arg0(i32*) {
|
||
|
ret void
|
||
|
}
|
||
|
|
||
|
; CHECK: Calling convention parameter requires byval
|
||
|
; CHECK-NEXT: void (i32)* @non_ptr_arg0_decl
|
||
|
declare x86_intrcc void @non_ptr_arg0_decl(i32)
|
||
|
|
||
|
; CHECK: Calling convention parameter requires byval
|
||
|
; CHECK-NEXT: void (i32*)* @non_byval_ptr_arg0_decl
|
||
|
declare x86_intrcc void @non_byval_ptr_arg0_decl(i32*)
|