mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 10:42:39 +01:00
4c16866a59
Currently the backend special cases x86_intrcc and treats the first parameter as byval. Make the IR require byval for this parameter to remove this special case, and avoid the dependence on the pointee element type. Fixes bug 46672. I'm not sure the IR is enforcing all the calling convention constraints. clang seems to ignore the attribute for empty parameter lists, but the IR tolerates it.
14 lines
340 B
LLVM
14 lines
340 B
LLVM
; RUN: llvm-as < %s | llvm-dis | FileCheck %s
|
|
; RUN: verify-uselistorder %s
|
|
|
|
; Make sure no arguments is accepted
|
|
; CHECK: define x86_intrcc void @no_args() {
|
|
define x86_intrcc void @no_args() {
|
|
ret void
|
|
}
|
|
|
|
; CHECK: define x86_intrcc void @byval_arg(i32* byval(i32) %0) {
|
|
define x86_intrcc void @byval_arg(i32* byval(i32)) {
|
|
ret void
|
|
}
|