diff options
Diffstat (limited to 'llvm/test/Transforms/FunctionAttrs/forced.ll')
-rw-r--r-- | llvm/test/Transforms/FunctionAttrs/forced.ll | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/llvm/test/Transforms/FunctionAttrs/forced.ll b/llvm/test/Transforms/FunctionAttrs/forced.ll deleted file mode 100644 index d0bdb155a20..00000000000 --- a/llvm/test/Transforms/FunctionAttrs/forced.ll +++ /dev/null @@ -1,12 +0,0 @@ -; RUN: opt < %s -S -functionattrs | FileCheck %s --check-prefix=CHECK-CONTROL -; RUN: opt < %s -S -functionattrs -force-attribute foo:noinline | FileCheck %s --check-prefix=CHECK-FOO - -; CHECK-CONTROL: define void @foo() #0 { -; CHECK-FOO: define void @foo() #0 { -define void @foo() { - ret void -} - - -; CHECK-CONTROL: attributes #0 = { norecurse readnone } -; CHECK-FOO: attributes #0 = { noinline norecurse readnone } |