From: Bob Wilson Date: Thu, 6 Mar 2014 21:35:59 +0000 (+0000) Subject: PGO: rename FileCheck variable to follow the existing convention. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=07e912f1f78e200f2760232b7377f301371f1662;p=clang PGO: rename FileCheck variable to follow the existing convention. I added this "STF" variable without noticing that all the other counter names end with a "C". Renaming it to "STC" for consistency. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@203165 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/CodeGen/instr-profile.c b/test/CodeGen/instr-profile.c index 10a68c15d2..3428520278 100644 --- a/test/CodeGen/instr-profile.c +++ b/test/CodeGen/instr-profile.c @@ -18,7 +18,7 @@ // PGOGEN: @[[BLC:__llvm_pgo_ctr[0-9]*]] = private global [9 x i64] zeroinitializer // PGOGEN: @[[NOC:__llvm_pgo_ctr[0-9]*]] = private global [2 x i64] zeroinitializer // PGOGEN: @[[MAC:__llvm_pgo_ctr[0-9]*]] = private global [1 x i64] zeroinitializer -// PGOGEN: @[[STF:__llvm_pgo_ctr[0-9]*]] = private global [2 x i64] zeroinitializer +// PGOGEN: @[[STC:__llvm_pgo_ctr[0-9]*]] = private global [2 x i64] zeroinitializer // PGOGEN-LABEL: @simple_loops() // PGOUSE-LABEL: @simple_loops() @@ -448,9 +448,9 @@ void no_usable_data() { // PGOGEN-LABEL: @static_func() // PGOUSE-LABEL: @static_func() -// PGOGEN: store {{.*}} @[[STF]], i64 0, i64 0 +// PGOGEN: store {{.*}} @[[STC]], i64 0, i64 0 static void static_func() { - // PGOGEN: store {{.*}} @[[STF]], i64 0, i64 1 + // PGOGEN: store {{.*}} @[[STC]], i64 0, i64 1 // PGOUSE: br {{.*}} !prof ![[ST1:[0-9]+]] for (int i = 0; i < 10; ++i) { }