| Submitter | asharif tools |
|---|---|
| Date | Jan. 24, 2011, 9:19 p.m. |
| Message ID | <AANLkTin8S8a2dbFL9c0SqQ_XBT2nmH5_Vo_OxWzJmY40@mail.gmail.com> |
| Download | mbox | patch |
| Permalink | /patch/80251/ |
| State | New |
| Headers | show |
Comments
Patch
--- gcc/value-prof.c (revision 169016) +++ gcc/value-prof.c (working copy) @@ -473,9 +473,12 @@ } else { - error_at (locus, "corrupted value profile: %s " - "profiler overall count (%d) does not match BB count (%d)", - name, (int)*all, (int)bb_count); + error_at (locus, "profile counter (%d out of %d) inconsistent with" + "basic-block count (%d)", + name, + (int) *count, + (int) *all, + (int) bb_count); return true; } }