diff options
author | Xinliang David Li <davidxl@google.com> | 2017-05-12 23:41:43 +0000 |
---|---|---|
committer | Xinliang David Li <davidxl@google.com> | 2017-05-12 23:41:43 +0000 |
commit | 66bdfca77a5ecf1abe45b2db20ea2deda610b96b (patch) | |
tree | 25e657160c06410c6facd195c636d48dffda30a5 /llvm/test/Transforms/CodeExtractor/X86 | |
parent | 3f6dd7a86c8c30d65b661f6cb90618c78e9c2c38 (diff) | |
download | bcm5719-llvm-66bdfca77a5ecf1abe45b2db20ea2deda610b96b.tar.gz bcm5719-llvm-66bdfca77a5ecf1abe45b2db20ea2deda610b96b.zip |
[PartialInlining] Profile based cost analysis
Implemented frequency based cost/saving analysis
and related options.
The pass is now in a state ready to be turne on
in the pipeline (in follow up).
Differential Revision: http://reviews.llvm.org/D32783
llvm-svn: 302967
Diffstat (limited to 'llvm/test/Transforms/CodeExtractor/X86')
-rw-r--r-- | llvm/test/Transforms/CodeExtractor/X86/InheritTargetAttributes.ll | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/test/Transforms/CodeExtractor/X86/InheritTargetAttributes.ll b/llvm/test/Transforms/CodeExtractor/X86/InheritTargetAttributes.ll index 41d883c8c37..0f8a71907d8 100644 --- a/llvm/test/Transforms/CodeExtractor/X86/InheritTargetAttributes.ll +++ b/llvm/test/Transforms/CodeExtractor/X86/InheritTargetAttributes.ll @@ -1,5 +1,5 @@ -; RUN: opt < %s -partial-inliner | llc -filetype=null -; RUN: opt < %s -partial-inliner -S | FileCheck %s +; RUN: opt < %s -partial-inliner -skip-partial-inlining-cost-analysis | llc -filetype=null +; RUN: opt < %s -partial-inliner -skip-partial-inlining-cost-analysis -S | FileCheck %s ; This testcase checks to see if CodeExtractor properly inherits ; target specific attributes for the extracted function. This can ; cause certain instructions that depend on the attributes to not |