diff options
author | Xinliang David Li <davidxl@google.com> | 2016-05-05 02:59:57 +0000 |
---|---|---|
committer | Xinliang David Li <davidxl@google.com> | 2016-05-05 02:59:57 +0000 |
commit | 6e5dd414817ce0ed4daad5ec61bfd0830126f78c (patch) | |
tree | 04c1d667f22280219b248dc0d97c6de5fe7e91f7 /llvm/test/Analysis/BranchProbabilityInfo/loop.ll | |
parent | c1e50d5090a23e8c4ad89fe0da443b6708f2d406 (diff) | |
download | bcm5719-llvm-6e5dd414817ce0ed4daad5ec61bfd0830126f78c.tar.gz bcm5719-llvm-6e5dd414817ce0ed4daad5ec61bfd0830126f78c.zip |
[PM] Port Branch Probability Analysis pass to the new pass manager.
Differential Revision: http://reviews.llvm.org/D19839
llvm-svn: 268601
Diffstat (limited to 'llvm/test/Analysis/BranchProbabilityInfo/loop.ll')
-rw-r--r-- | llvm/test/Analysis/BranchProbabilityInfo/loop.ll | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/test/Analysis/BranchProbabilityInfo/loop.ll b/llvm/test/Analysis/BranchProbabilityInfo/loop.ll index 5be7adf3909..1a37a7a4659 100644 --- a/llvm/test/Analysis/BranchProbabilityInfo/loop.ll +++ b/llvm/test/Analysis/BranchProbabilityInfo/loop.ll @@ -1,5 +1,6 @@ ; Test the static branch probability heuristics for no-return functions. ; RUN: opt < %s -analyze -branch-prob | FileCheck %s +; RUN: opt < %s -passes='print<branch-prob>' --disable-output 2>&1 | FileCheck %s declare void @g1() declare void @g2() |