diff options
author | Dehao Chen <dehao@google.com> | 2016-09-19 16:02:52 +0000 |
---|---|---|
committer | Dehao Chen <dehao@google.com> | 2016-09-19 16:02:52 +0000 |
commit | dd6f8cab08f9f383c12319e5388b22ed77c66ff1 (patch) | |
tree | 96d8f294a6bf90586322a566050703d81fc12a1c /clang/test/CodeGen/pgo-sample.c | |
parent | 130a190bf08a3d955d9db24dac936159dc049e12 (diff) | |
download | bcm5719-llvm-dd6f8cab08f9f383c12319e5388b22ed77c66ff1.tar.gz bcm5719-llvm-dd6f8cab08f9f383c12319e5388b22ed77c66ff1.zip |
Remove InstructionCombining and its related pass from sample pgo passes as we can handle "invoke" correctly.
Summary: We previously relies on InstructionCombining pass to remove invoke instructions. Now that we can inline invoke instructions correctly, we do not need these passes any more.
Reviewers: dnovillo
Subscribers: llvm-commits
Differential Revision: https://reviews.llvm.org/D24730
llvm-svn: 281910
Diffstat (limited to 'clang/test/CodeGen/pgo-sample.c')
-rw-r--r-- | clang/test/CodeGen/pgo-sample.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/clang/test/CodeGen/pgo-sample.c b/clang/test/CodeGen/pgo-sample.c index c955edfab7a..e7d2fa61aa1 100644 --- a/clang/test/CodeGen/pgo-sample.c +++ b/clang/test/CodeGen/pgo-sample.c @@ -2,8 +2,5 @@ // // Ensure Pass PGOInstrumentationGenPass is invoked. // RUN: %clang_cc1 -O2 -fprofile-sample-use=%S/Inputs/pgo-sample.prof %s -mllvm -debug-pass=Structure -emit-llvm -o - 2>&1 | FileCheck %s -// CHECK: Simplify the CFG -// CHECK: SROA -// CHECK: Combine redundant instructions // CHECK: Remove unused exception handling info // CHECK: Sample profile pass |