diff options
Diffstat (limited to 'llvm/test/Transforms/FunctionAttrs/operand-bundles-scc.ll')
-rw-r--r-- | llvm/test/Transforms/FunctionAttrs/operand-bundles-scc.ll | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/llvm/test/Transforms/FunctionAttrs/operand-bundles-scc.ll b/llvm/test/Transforms/FunctionAttrs/operand-bundles-scc.ll deleted file mode 100644 index 69808a83c6d..00000000000 --- a/llvm/test/Transforms/FunctionAttrs/operand-bundles-scc.ll +++ /dev/null @@ -1,17 +0,0 @@ -; RUN: opt -S -functionattrs < %s | FileCheck %s -; RUN: opt -S -passes=function-attrs < %s | FileCheck %s - -define void @f() { -; CHECK-LABEL: define void @f() #0 { - call void @g() [ "unknown"() ] - ret void -} - -define void @g() { -; CHECK-LABEL: define void @g() #0 { - call void @f() - ret void -} - - -; CHECK: attributes #0 = { nounwind } |