diff options
author | jason <jason@138bc75d-0d04-0410-961f-82ee72b054a4> | 2015-05-09 04:50:05 +0000 |
---|---|---|
committer | jason <jason@138bc75d-0d04-0410-961f-82ee72b054a4> | 2015-05-09 04:50:05 +0000 |
commit | f03df32112cfca98484bf085e62e7f6c8659a07c (patch) | |
tree | 332b7ebee4f40f05eb7ab5af1cf1c26cf1111e16 /gcc/cfg.c | |
parent | 548a37a85cd54490e5ebb5a34816a189eb2a4845 (diff) | |
download | gcc-f03df32112cfca98484bf085e62e7f6c8659a07c.tar.gz |
* bitmap.c, c/c-aux-info.c, cfg.c, cfghooks.c, cgraph.c,
config/aarch64/aarch64.md config/alpha/vms.h, config/darwin.c,
config/darwin.h, config/darwin9.h, config/elfos.h,
config/i386/bsd.h, config/ia64/ia64.c, config/lm32/lm32.h,
config/microblaze/microblaze.h, config/mips/mips.h,
config/mmix/mmix.c, config/msp430/msp430.c, config/nios2/nios2.h,
config/nvptx/nvptx.c, config/nvptx/nvptx.h, config/pa/pa.c,
config/pa/pa.h, config/rs6000/rs6000.c, config/rs6000/sysv4.h,
config/rs6000/xcoff.h, config/rx/rx.h, config/s390/s390.h,
config/sparc/sol2.h, config/sparc/sparc.h, config/visium/visium.h,
cppbuiltin.c, defaults.h, doc/invoke.texi, dwarf2cfi.c,
dwarf2out.c, final.c, gcc.c, gcov-dump.c, gcov.c, ipa-cp.c,
ipa-inline.c, ipa-polymorphic-call.c, ipa-profile.c, ipa-prop.c,
ira-color.c, ira.c, loop-doloop.c, loop-iv.c, mcf.c,
modulo-sched.c, predict.c, profile.c, stor-layout.c, toplev.c,
tree-ssa-reassoc.c, value-prof.c, wide-int-print.cc: Add space
between string literal and macro name.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@222960 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/cfg.c')
-rw-r--r-- | gcc/cfg.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/cfg.c b/gcc/cfg.c index 30745001b9e..cdcc01c9a1c 100644 --- a/gcc/cfg.c +++ b/gcc/cfg.c @@ -508,7 +508,7 @@ dump_edge_info (FILE *file, edge e, int flags, int do_succ) if (e->count && do_details) { fputs (" count:", file); - fprintf (file, "%"PRId64, e->count); + fprintf (file, "%" PRId64, e->count); } if (e->flags && do_details) @@ -756,7 +756,7 @@ dump_bb_info (FILE *outf, basic_block bb, int indent, int flags, if (flags & TDF_DETAILS) { struct function *fun = DECL_STRUCT_FUNCTION (current_function_decl); - fprintf (outf, ", count " "%"PRId64, + fprintf (outf, ", count " "%" PRId64, (int64_t) bb->count); fprintf (outf, ", freq %i", bb->frequency); if (maybe_hot_bb_p (fun, bb)) |