diff options
Diffstat (limited to 'test/Transforms/Inline/2008-09-02-AlwaysInline.ll')
-rw-r--r-- | test/Transforms/Inline/2008-09-02-AlwaysInline.ll | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/test/Transforms/Inline/2008-09-02-AlwaysInline.ll b/test/Transforms/Inline/2008-09-02-AlwaysInline.ll deleted file mode 100644 index 39095c4..0000000 --- a/test/Transforms/Inline/2008-09-02-AlwaysInline.ll +++ /dev/null @@ -1,10 +0,0 @@ -; RUN: opt < %s -inline-threshold=0 -inline -S | not grep call - -define i32 @fn2() alwaysinline { - ret i32 1 -} - -define i32 @fn3() { - %r = call i32 @fn2() - ret i32 %r -} |