r301339 - [PGO] Update test now that we don't call IndirectCallPromotion.
Davide Italiano via cfe-commits
cfe-commits at lists.llvm.org
Tue Apr 25 10:48:11 PDT 2017
Author: davide
Date: Tue Apr 25 12:48:10 2017
New Revision: 301339
URL: http://llvm.org/viewvc/llvm-project?rev=301339&view=rev
Log:
[PGO] Update test now that we don't call IndirectCallPromotion.
Modified:
cfe/trunk/test/CodeGen/pgo-sample-thinlto-summary.c
Modified: cfe/trunk/test/CodeGen/pgo-sample-thinlto-summary.c
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGen/pgo-sample-thinlto-summary.c?rev=301339&r1=301338&r2=301339&view=diff
==============================================================================
--- cfe/trunk/test/CodeGen/pgo-sample-thinlto-summary.c (original)
+++ cfe/trunk/test/CodeGen/pgo-sample-thinlto-summary.c Tue Apr 25 12:48:10 2017
@@ -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();
More information about the cfe-commits
mailing list