mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-02-01 13:11:39 +01:00
950be4e219
Requires "native" feature in most places that were failing. From: Mehdi Amini <mehdi.amini@apple.com> llvm-svn: 243960
14 lines
273 B
LLVM
14 lines
273 B
LLVM
; RUN: llvm-as < %s | llvm-dis | FileCheck %s
|
|
; REQUIRE: native
|
|
|
|
; Check for the presence of attribute optnone in the disassembly.
|
|
|
|
; CHECK: @foo() #0
|
|
define void @foo() #0 {
|
|
ret void
|
|
}
|
|
|
|
; CHECK: attributes #0 = { noinline optnone }
|
|
attributes #0 = { optnone noinline }
|
|
|