summaryrefslogtreecommitdiff
path: root/gcc/cfgrtl.c
diff options
context:
space:
mode:
authorghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4>2003-07-01 18:28:27 +0000
committerghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4>2003-07-01 18:28:27 +0000
commitd9f38790640fea5a9886c585b5454b6e63e1a277 (patch)
tree3062a5ccedd5aa732aa1809638631a88952acdf5 /gcc/cfgrtl.c
parent1bcd2da1b88f61134d3fce1fab18112b47d6c6d7 (diff)
downloadgcc-d9f38790640fea5a9886c585b5454b6e63e1a277.tar.gz
* c-semantics.c (genrtl_case_label): Fix format specifier bug.
* cfgrtl.c (rtl_verify_flow_info_1): Likewise. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@68784 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/cfgrtl.c')
-rw-r--r--gcc/cfgrtl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/cfgrtl.c b/gcc/cfgrtl.c
index 1205b4cfa37..7340b9f79b0 100644
--- a/gcc/cfgrtl.c
+++ b/gcc/cfgrtl.c
@@ -1833,7 +1833,7 @@ rtl_verify_flow_info_1 (void)
{
if (INTVAL (XEXP (note, 0)) != BRANCH_EDGE (bb)->probability)
{
- error ("verify_flow_info: REG_BR_PROB does not match cfg %i %i",
+ error ("verify_flow_info: REG_BR_PROB does not match cfg %wi %i",
INTVAL (XEXP (note, 0)), BRANCH_EDGE (bb)->probability);
err = 1;
}