diff options
author | Xinliang David Li <davidxl@google.com> | 2017-05-02 02:44:14 +0000 |
---|---|---|
committer | Xinliang David Li <davidxl@google.com> | 2017-05-02 02:44:14 +0000 |
commit | 6133846be1026e6a03200851184cac9d01fd3126 (patch) | |
tree | 75dce685a5686c55da68bc5a1f02841ca1c75506 /llvm/test/Transforms/CodeExtractor/PartialInlineOr.ll | |
parent | 28355efdada8c8a4f9829d388d413c4745168874 (diff) | |
download | bcm5719-llvm-6133846be1026e6a03200851184cac9d01fd3126.tar.gz bcm5719-llvm-6133846be1026e6a03200851184cac9d01fd3126.zip |
[PartialInlining] Hook up inline cost analysis
Differential Revision: http://reviews.llvm.org/D32666
llvm-svn: 301894
Diffstat (limited to 'llvm/test/Transforms/CodeExtractor/PartialInlineOr.ll')
-rw-r--r-- | llvm/test/Transforms/CodeExtractor/PartialInlineOr.ll | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/test/Transforms/CodeExtractor/PartialInlineOr.ll b/llvm/test/Transforms/CodeExtractor/PartialInlineOr.ll index a61287c5d8a..5408b4faaf7 100644 --- a/llvm/test/Transforms/CodeExtractor/PartialInlineOr.ll +++ b/llvm/test/Transforms/CodeExtractor/PartialInlineOr.ll @@ -3,7 +3,7 @@ ; RUN: opt < %s -partial-inliner -max-num-inline-blocks=2 -S | FileCheck --check-prefix=LIMIT %s ; RUN: opt < %s -passes=partial-inliner -max-num-inline-blocks=2 -S | FileCheck --check-prefix=LIMIT %s -; Function Attrs: noinline nounwind uwtable +; Function Attrs: nounwind uwtable define i32 @bar(i32 %arg) local_unnamed_addr #0 { bb: %tmp = icmp slt i32 %arg, 0 @@ -35,7 +35,7 @@ declare i32 @channels(...) local_unnamed_addr declare void @foo(...) local_unnamed_addr -; Function Attrs: noinline nounwind uwtable +; Function Attrs: nounwind uwtable define i32 @dummy_caller(i32 %arg) local_unnamed_addr #0 { bb: ; CHECK-LABEL: @dummy_caller @@ -89,7 +89,7 @@ define i32 @dummy_caller2(i32 %arg) local_unnamed_addr #0 { ret i32 %tmp } -attributes #0 = { noinline nounwind uwtable } +attributes #0 = { nounwind uwtable } attributes #1 = { nounwind } !llvm.ident = !{!0} |