diff options
| author | Davide Italiano <davide@freebsd.org> | 2017-04-25 17:48:10 +0000 |
|---|---|---|
| committer | Davide Italiano <davide@freebsd.org> | 2017-04-25 17:48:10 +0000 |
| commit | 44f6ea881822da3249d27fff1e0e892a8b7afb46 (patch) | |
| tree | e34f3cf54a5afa892318f559567c10f29fd51f4d | |
| parent | f3dbd17d0a9f286591026a01a026aceec92dcfb7 (diff) | |
| download | bcm5719-llvm-44f6ea881822da3249d27fff1e0e892a8b7afb46.tar.gz bcm5719-llvm-44f6ea881822da3249d27fff1e0e892a8b7afb46.zip | |
[PGO] Update test now that we don't call IndirectCallPromotion.
llvm-svn: 301339
| -rw-r--r-- | clang/test/CodeGen/pgo-sample-thinlto-summary.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/test/CodeGen/pgo-sample-thinlto-summary.c b/clang/test/CodeGen/pgo-sample-thinlto-summary.c index a284af3c808..fe742e0df12 100644 --- a/clang/test/CodeGen/pgo-sample-thinlto-summary.c +++ b/clang/test/CodeGen/pgo-sample-thinlto-summary.c @@ -32,10 +32,10 @@ void unroll() { baz(i); } -// Checks if icp is invoked by normal compile, but not thinlto compile. +// Checks that icp is invoked. // O2-LABEL: define void @icp // THINLTO-LABEL: define void @icp -// O2: if.true.direct_targ +// O2-NOT: if.true.direct_targ // ThinLTO-NOT: if.true.direct_targ void icp(void (*p)()) { p(); |

