diff options
author | Kaveh R. Ghazi <ghazi@caip.rutgers.edu> | 2003-07-01 18:28:27 +0000 |
---|---|---|
committer | Kaveh Ghazi <ghazi@gcc.gnu.org> | 2003-07-01 18:28:27 +0000 |
commit | 0108ae51e9fc5d570337a3a1f7a4a93b82441307 (patch) | |
tree | 3062a5ccedd5aa732aa1809638631a88952acdf5 /gcc/cfgrtl.c | |
parent | 62bfce90da38001c15c416e3a605b1ed2ad7049f (diff) | |
download | gcc-0108ae51e9fc5d570337a3a1f7a4a93b82441307.zip gcc-0108ae51e9fc5d570337a3a1f7a4a93b82441307.tar.gz gcc-0108ae51e9fc5d570337a3a1f7a4a93b82441307.tar.bz2 |
c-semantics.c (genrtl_case_label): Fix format specifier bug.
* c-semantics.c (genrtl_case_label): Fix format specifier bug.
* cfgrtl.c (rtl_verify_flow_info_1): Likewise.
From-SVN: r68784
Diffstat (limited to 'gcc/cfgrtl.c')
-rw-r--r-- | gcc/cfgrtl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/cfgrtl.c b/gcc/cfgrtl.c index 1205b4c..7340b9f 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; } |