diff options
author | Manuel López-Ibáñez <manu@gcc.gnu.org> | 2009-07-07 02:10:19 +0000 |
---|---|---|
committer | Manuel López-Ibáñez <manu@gcc.gnu.org> | 2009-07-07 02:10:19 +0000 |
commit | fab922b1f55fe7766a375d0ee28a1c48f3185250 (patch) | |
tree | 75f96edfe80b6d74b595292cb3f885c6a8ade502 /gcc/value-prof.c | |
parent | 56131eb5a0492df3fd6421db599ed6f3b42545c6 (diff) | |
download | gcc-fab922b1f55fe7766a375d0ee28a1c48f3185250.zip gcc-fab922b1f55fe7766a375d0ee28a1c48f3185250.tar.gz gcc-fab922b1f55fe7766a375d0ee28a1c48f3185250.tar.bz2 |
c-lex.c: Replace %H by an explicit location.
2009-07-07 Manuel López-Ibáñez <manu@gcc.gnu.org>
* c-lex.c: Replace %H by an explicit location. Update all calls.
* c-common.c: Likewise.
* c-decl.c: Likewise.
* c-typeck.c: Likewise.
* fold-const.c: Likewise.
* gimplify.c: Likewise.
* stmt.c: Likewise.
* tree-cfg.c: Likewise.
* tree-ssa-loop-niter.c: Likewise.
* tree-vrp.c: Likewise.
* value-prof.c: Likewise.
java/
* jcf-parse.c: Replace %H by an explicit location. Update all calls.
objc/
* objc-act.c: Replace %H by an explicit location. Update all calls.
testsuite/
* gcc.dg/plugin/selfassign.c: Replace %H by an explicit
location. Update all calls.
* g++.dg/plugin/selfassign.c: Likewise.
From-SVN: r149310
Diffstat (limited to 'gcc/value-prof.c')
-rw-r--r-- | gcc/value-prof.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/value-prof.c b/gcc/value-prof.c index 120a68d..e7a8e0f 100644 --- a/gcc/value-prof.c +++ b/gcc/value-prof.c @@ -474,9 +474,9 @@ check_counter (gimple stmt, const char * name, } else { - error ("%HCorrupted value profile: %s profiler overall count (%d) " - "does not match BB count (%d)", &locus, name, (int)*all, - (int)bb_count); + error_at (locus, "Corrupted value profile: %s " + "profiler overall count (%d) does not match BB count (%d)", + name, (int)*all, (int)bb_count); return true; } } |