mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 10:42:39 +01:00
efe6c99b52
This reverts commit 07e46367baeca96d84b03fa215b41775f69d5989.
8 lines
369 B
LLVM
8 lines
369 B
LLVM
; RUN: not llvm-as < %s -o /dev/null 2>&1 | FileCheck %s
|
|
|
|
; CHECK: Wrong types for attribute: nest noalias nocapture noundef nonnull readnone readonly signext zeroext byref(void) byval(void) inalloca(void) preallocated(void) sret(void) align 1 dereferenceable(1) dereferenceable_or_null(1)
|
|
; CHECK-NEXT: @noundef_void
|
|
define noundef void @noundef_void() {
|
|
ret void
|
|
}
|