mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 19:23:23 +01:00
13 lines
438 B
LLVM
13 lines
438 B
LLVM
|
; RUN: opt < %s -S -forceattrs | FileCheck %s --check-prefix=CHECK-CONTROL
|
||
|
; RUN: opt < %s -S -forceattrs -force-attribute foo:noinline | FileCheck %s --check-prefix=CHECK-FOO
|
||
|
; RUN: opt < %s -S -passes=forceattrs -force-attribute foo:noinline | FileCheck %s --check-prefix=CHECK-FOO
|
||
|
|
||
|
; CHECK-CONTROL: define void @foo() {
|
||
|
; CHECK-FOO: define void @foo() #0 {
|
||
|
define void @foo() {
|
||
|
ret void
|
||
|
}
|
||
|
|
||
|
|
||
|
; CHECK-FOO: attributes #0 = { noinline }
|