mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-26 12:43:36 +01:00
88c849a4b2
Hopefully the last of these, apologies for the noise.
14 lines
666 B
LLVM
14 lines
666 B
LLVM
; RUN: not llvm-as < %s -o /dev/null 2>&1 | FileCheck %s
|
|
|
|
; CHECK: Wrong types for attribute: inalloca nest noalias nocapture nonnull readnone readonly sret byref(i32) byval(i32) preallocated(i32) align 1 dereferenceable(1) dereferenceable_or_null(1)
|
|
; CHECK-NEXT: @align_non_pointer1
|
|
define void @align_non_pointer1(i32 align 4 %a) {
|
|
ret void
|
|
}
|
|
|
|
; CHECK: Wrong types for attribute: inalloca nest noalias nocapture noundef nonnull readnone readonly signext sret zeroext byref(void) byval(void) preallocated(void) align 1 dereferenceable(1) dereferenceable_or_null(1)
|
|
; CHECK-NEXT: @align_non_pointer2
|
|
define align 4 void @align_non_pointer2(i32 %a) {
|
|
ret void
|
|
}
|