Skip to content

Commit f03df32

Browse files
author
jason
committed
* 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
1 parent 548a37a commit f03df32

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

59 files changed

+211
-191
lines changed

gcc/ChangeLog

+20
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,23 @@
1+
2015-05-08 Jason Merrill <[email protected]>
2+
3+
* bitmap.c, c/c-aux-info.c, cfg.c, cfghooks.c, cgraph.c,
4+
config/aarch64/aarch64.md config/alpha/vms.h, config/darwin.c,
5+
config/darwin.h, config/darwin9.h, config/elfos.h,
6+
config/i386/bsd.h, config/ia64/ia64.c, config/lm32/lm32.h,
7+
config/microblaze/microblaze.h, config/mips/mips.h,
8+
config/mmix/mmix.c, config/msp430/msp430.c, config/nios2/nios2.h,
9+
config/nvptx/nvptx.c, config/nvptx/nvptx.h, config/pa/pa.c,
10+
config/pa/pa.h, config/rs6000/rs6000.c, config/rs6000/sysv4.h,
11+
config/rs6000/xcoff.h, config/rx/rx.h, config/s390/s390.h,
12+
config/sparc/sol2.h, config/sparc/sparc.h, config/visium/visium.h,
13+
cppbuiltin.c, defaults.h, doc/invoke.texi, dwarf2cfi.c,
14+
dwarf2out.c, final.c, gcc.c, gcov-dump.c, gcov.c, ipa-cp.c,
15+
ipa-inline.c, ipa-polymorphic-call.c, ipa-profile.c, ipa-prop.c,
16+
ira-color.c, ira.c, loop-doloop.c, loop-iv.c, mcf.c,
17+
modulo-sched.c, predict.c, profile.c, stor-layout.c, toplev.c,
18+
tree-ssa-reassoc.c, value-prof.c, wide-int-print.cc: Add space
19+
between string literal and macro name.
20+
121
2015-05-08 Trevor Saunders <[email protected]>
222

323
* jump.c: Change argument types to rtx_insn *.

gcc/bitmap.c

+3-3
Original file line numberDiff line numberDiff line change
@@ -2170,8 +2170,8 @@ print_statistics (bitmap_descriptor_d **slot, bitmap_output_info *i)
21702170
sprintf (s, "%s:%i (%s)", s1, d->line, d->function);
21712171
s[41] = 0;
21722172
fprintf (stderr,
2173-
"%-41s %9u %15"PRId64" %15"PRId64" %15"PRId64
2174-
" %10"PRId64" %10"PRId64"\n",
2173+
"%-41s %9u %15" PRId64" %15" PRId64" %15" PRId64
2174+
" %10" PRId64" %10" PRId64"\n",
21752175
s, d->created,
21762176
d->allocated, d->peak, d->current,
21772177
d->nsearches, d->search_iter);
@@ -2204,7 +2204,7 @@ dump_bitmap_statistics (void)
22042204
bitmap_desc_hash->traverse <bitmap_output_info *, print_statistics> (&info);
22052205
fprintf (stderr, "---------------------------------------------------------------------------------\n");
22062206
fprintf (stderr,
2207-
"%-41s %9"PRId64" %15"PRId64"\n",
2207+
"%-41s %9" PRId64" %15" PRId64"\n",
22082208
"Total", info.count, info.size);
22092209
fprintf (stderr, "---------------------------------------------------------------------------------\n");
22102210
}

gcc/c/c-aux-info.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -319,7 +319,7 @@ gen_type (const char *ret_val, tree t, formals_style style)
319319
else
320320
{
321321
char buff[23];
322-
sprintf (buff, "["HOST_WIDE_INT_PRINT_DEC"]",
322+
sprintf (buff, "[" HOST_WIDE_INT_PRINT_DEC"]",
323323
int_size_in_bytes (t)
324324
/ int_size_in_bytes (TREE_TYPE (t)));
325325
ret_val = gen_type (concat (ret_val, buff, NULL),

gcc/cfg.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -508,7 +508,7 @@ dump_edge_info (FILE *file, edge e, int flags, int do_succ)
508508
if (e->count && do_details)
509509
{
510510
fputs (" count:", file);
511-
fprintf (file, "%"PRId64, e->count);
511+
fprintf (file, "%" PRId64, e->count);
512512
}
513513

514514
if (e->flags && do_details)
@@ -756,7 +756,7 @@ dump_bb_info (FILE *outf, basic_block bb, int indent, int flags,
756756
if (flags & TDF_DETAILS)
757757
{
758758
struct function *fun = DECL_STRUCT_FUNCTION (current_function_decl);
759-
fprintf (outf, ", count " "%"PRId64,
759+
fprintf (outf, ", count " "%" PRId64,
760760
(int64_t) bb->count);
761761
fprintf (outf, ", freq %i", bb->frequency);
762762
if (maybe_hot_bb_p (fun, bb))

gcc/cfghooks.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -330,7 +330,7 @@ dump_bb_for_graph (pretty_printer *pp, basic_block bb)
330330
internal_error ("%s does not support dump_bb_for_graph",
331331
cfg_hooks->name);
332332
if (bb->count)
333-
pp_printf (pp, "COUNT:" "%"PRId64, bb->count);
333+
pp_printf (pp, "COUNT:" "%" PRId64, bb->count);
334334
pp_printf (pp, " FREQ:%i |", bb->frequency);
335335
pp_write_text_to_stream (pp);
336336
if (!(dump_flags & TDF_SLIM))

gcc/cgraph.c

+3-3
Original file line numberDiff line numberDiff line change
@@ -1325,7 +1325,7 @@ cgraph_edge::redirect_call_stmt_to_callee (void)
13251325
if (dump_file)
13261326
fprintf (dump_file,
13271327
"Expanding speculative call of %s/%i -> %s/%i count:"
1328-
"%"PRId64"\n",
1328+
"%" PRId64"\n",
13291329
xstrdup_for_dump (e->caller->name ()),
13301330
e->caller->order,
13311331
xstrdup_for_dump (e->callee->name ()),
@@ -1943,7 +1943,7 @@ cgraph_edge::dump_edge_flags (FILE *f)
19431943
if (indirect_inlining_edge)
19441944
fprintf (f, "(indirect_inlining) ");
19451945
if (count)
1946-
fprintf (f, "(%"PRId64"x) ", (int64_t)count);
1946+
fprintf (f, "(%" PRId64"x) ", (int64_t)count);
19471947
if (frequency)
19481948
fprintf (f, "(%.2f per call) ", frequency / (double)CGRAPH_FREQ_BASE);
19491949
if (can_throw_external)
@@ -1979,7 +1979,7 @@ cgraph_node::dump (FILE *f)
19791979
fprintf (f, " First run: %i\n", tp_first_run);
19801980
fprintf (f, " Function flags:");
19811981
if (count)
1982-
fprintf (f, " executed %"PRId64"x",
1982+
fprintf (f, " executed %" PRId64"x",
19831983
(int64_t)count);
19841984
if (origin)
19851985
fprintf (f, " nested in: %s", origin->asm_name ());

gcc/config/aarch64/aarch64.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -531,7 +531,7 @@
531531
char buf[64];
532532
uint64_t val = ((uint64_t ) 1)
533533
<< (GET_MODE_SIZE (<MODE>mode) * BITS_PER_UNIT - 1);
534-
sprintf (buf, "tst\t%%<w>0, %"PRId64, val);
534+
sprintf (buf, "tst\t%%<w>0, %" PRId64, val);
535535
output_asm_insn (buf, operands);
536536
return "<bcond>\t%l1";
537537
}

gcc/config/alpha/vms.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -219,15 +219,15 @@ typedef struct {int num_args; enum avms_arg_type atypes[6];} avms_arg_info;
219219
/* This is how to advance the location counter by SIZE bytes. */
220220

221221
#define ASM_OUTPUT_SKIP(FILE,SIZE) \
222-
fprintf (FILE, "\t.space "HOST_WIDE_INT_PRINT_UNSIGNED"\n", (SIZE))
222+
fprintf (FILE, "\t.space " HOST_WIDE_INT_PRINT_UNSIGNED"\n", (SIZE))
223223

224224
/* This says how to output an assembler line
225225
to define a global common symbol. */
226226

227227
#define ASM_OUTPUT_LOCAL(FILE, NAME, SIZE,ROUNDED) \
228228
( fputs ("\t.lcomm ", (FILE)), \
229229
assemble_name ((FILE), (NAME)), \
230-
fprintf ((FILE), ","HOST_WIDE_INT_PRINT_UNSIGNED"\n", (SIZE)))
230+
fprintf ((FILE), "," HOST_WIDE_INT_PRINT_UNSIGNED"\n", (SIZE)))
231231

232232
/* Switch into a generic section. */
233233
#define TARGET_ASM_NAMED_SECTION vms_asm_named_section

gcc/config/darwin.c

+7-7
Original file line numberDiff line numberDiff line change
@@ -2251,7 +2251,7 @@ fprintf (file, "# dadon: %s %s (%llu, %u) local %d weak %d"
22512251

22522252
ASM_OUTPUT_LABEL (file, xname);
22532253
size = 1;
2254-
fprintf (file, "\t.space\t"HOST_WIDE_INT_PRINT_UNSIGNED"\n", size);
2254+
fprintf (file, "\t.space\t" HOST_WIDE_INT_PRINT_UNSIGNED"\n", size);
22552255

22562256
/* Check that we've correctly picked up the zero-sized item and placed it
22572257
properly. */
@@ -2392,7 +2392,7 @@ darwin_emit_local_bss (FILE *fp, tree decl, const char *name,
23922392
fprintf (fp, "\t.align\t%u\n", l2align);
23932393

23942394
assemble_name (fp, name);
2395-
fprintf (fp, ":\n\t.space\t"HOST_WIDE_INT_PRINT_UNSIGNED"\n", size);
2395+
fprintf (fp, ":\n\t.space\t" HOST_WIDE_INT_PRINT_UNSIGNED"\n", size);
23962396
}
23972397
else
23982398
{
@@ -2413,10 +2413,10 @@ darwin_emit_local_bss (FILE *fp, tree decl, const char *name,
24132413
size = 1;
24142414

24152415
if (l2align)
2416-
fprintf (fp, ","HOST_WIDE_INT_PRINT_UNSIGNED",%u\n",
2416+
fprintf (fp, "," HOST_WIDE_INT_PRINT_UNSIGNED",%u\n",
24172417
size, (unsigned) l2align);
24182418
else
2419-
fprintf (fp, ","HOST_WIDE_INT_PRINT_UNSIGNED"\n", size);
2419+
fprintf (fp, "," HOST_WIDE_INT_PRINT_UNSIGNED"\n", size);
24202420
}
24212421

24222422
(*targetm.encode_section_info) (decl, DECL_RTL (decl), false);
@@ -2564,7 +2564,7 @@ fprintf (fp, "# albss: %s (%lld,%d) ro %d cst %d stat %d com %d"
25642564
fprintf (fp, "\t.align\t%u\n", l2align);
25652565

25662566
assemble_name (fp, name);
2567-
fprintf (fp, ":\n\t.space\t"HOST_WIDE_INT_PRINT_UNSIGNED"\n", size);
2567+
fprintf (fp, ":\n\t.space\t" HOST_WIDE_INT_PRINT_UNSIGNED"\n", size);
25682568
}
25692569
else
25702570
{
@@ -2585,9 +2585,9 @@ fprintf (fp, "# albss: %s (%lld,%d) ro %d cst %d stat %d com %d"
25852585
size = 1;
25862586

25872587
if (l2align)
2588-
fprintf (fp, ","HOST_WIDE_INT_PRINT_UNSIGNED",%u\n", size, l2align);
2588+
fprintf (fp, "," HOST_WIDE_INT_PRINT_UNSIGNED",%u\n", size, l2align);
25892589
else
2590-
fprintf (fp, ","HOST_WIDE_INT_PRINT_UNSIGNED"\n", size);
2590+
fprintf (fp, "," HOST_WIDE_INT_PRINT_UNSIGNED"\n", size);
25912591
}
25922592
(* targetm.encode_section_info) (decl, DECL_RTL (decl), false);
25932593
}

gcc/config/darwin.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -532,7 +532,7 @@ extern GTY(()) int darwin_ms_struct;
532532
#define TARGET_ASM_LTO_END darwin_asm_lto_end
533533

534534
#define ASM_OUTPUT_SKIP(FILE,SIZE) \
535-
fprintf (FILE, "\t.space "HOST_WIDE_INT_PRINT_UNSIGNED"\n", SIZE)
535+
fprintf (FILE, "\t.space " HOST_WIDE_INT_PRINT_UNSIGNED"\n", SIZE)
536536

537537
/* Give ObjC methods pretty symbol names. */
538538

gcc/config/darwin9.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ along with GCC; see the file COPYING3. If not see
5454
fprintf ((FILE), "\t.comm "); \
5555
assemble_name ((FILE), (NAME)); \
5656
if (_new_size == 0) _new_size = 1; \
57-
fprintf ((FILE), ","HOST_WIDE_INT_PRINT_UNSIGNED",%u\n", \
57+
fprintf ((FILE), "," HOST_WIDE_INT_PRINT_UNSIGNED",%u\n", \
5858
_new_size, floor_log2 ((ALIGN) / BITS_PER_UNIT)); \
5959
} while (0)
6060

gcc/config/elfos.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
9999

100100
#undef ASM_OUTPUT_SKIP
101101
#define ASM_OUTPUT_SKIP(FILE, SIZE) \
102-
fprintf ((FILE), "%s"HOST_WIDE_INT_PRINT_UNSIGNED"\n",\
102+
fprintf ((FILE), "%s" HOST_WIDE_INT_PRINT_UNSIGNED "\n",\
103103
SKIP_ASM_OP, (SIZE))
104104

105105
/* This is how to store into the string LABEL
@@ -167,7 +167,7 @@ see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
167167
{ \
168168
fprintf ((FILE), "%s", COMMON_ASM_OP); \
169169
assemble_name ((FILE), (NAME)); \
170-
fprintf ((FILE), ","HOST_WIDE_INT_PRINT_UNSIGNED",%u\n", \
170+
fprintf ((FILE), "," HOST_WIDE_INT_PRINT_UNSIGNED ",%u\n", \
171171
(SIZE), (ALIGN) / BITS_PER_UNIT); \
172172
} \
173173
while (0)

gcc/config/i386/bsd.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ along with GCC; see the file COPYING3. If not see
4646
that says to advance the location counter by SIZE bytes. */
4747

4848
#define ASM_OUTPUT_SKIP(FILE,SIZE) \
49-
fprintf (FILE, "\t.space "HOST_WIDE_INT_PRINT_UNSIGNED"\n", (SIZE))
49+
fprintf (FILE, "\t.space " HOST_WIDE_INT_PRINT_UNSIGNED"\n", (SIZE))
5050

5151
/* Define the syntax of labels and symbol definitions/declarations. */
5252

gcc/config/ia64/ia64.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -858,7 +858,7 @@ ia64_vms_output_aligned_decl_common (FILE *file, tree decl, const char *name,
858858

859859
/* Code from elfos.h. */
860860
assemble_name (file, name);
861-
fprintf (file, ","HOST_WIDE_INT_PRINT_UNSIGNED",%u",
861+
fprintf (file, "," HOST_WIDE_INT_PRINT_UNSIGNED",%u",
862862
size, align / BITS_PER_UNIT);
863863

864864
fputc ('\n', file);
@@ -10018,7 +10018,7 @@ process_cfa_adjust_cfa (FILE *asm_out_file, rtx pat, rtx insn,
1001810018
gcc_assert (!frame_pointer_needed);
1001910019
if (unwind)
1002010020
fprintf (asm_out_file,
10021-
"\t.fframe "HOST_WIDE_INT_PRINT_DEC"\n",
10021+
"\t.fframe " HOST_WIDE_INT_PRINT_DEC"\n",
1002210022
-INTVAL (op1));
1002310023
}
1002410024
else

gcc/config/lm32/lm32.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -437,7 +437,7 @@ do \
437437
switch_to_section (bss_section); \
438438
fprintf ((FILE), "%s", COMMON_ASM_OP); \
439439
assemble_name ((FILE), (NAME)); \
440-
fprintf ((FILE), ","HOST_WIDE_INT_PRINT_UNSIGNED",%u\n", \
440+
fprintf ((FILE), "," HOST_WIDE_INT_PRINT_UNSIGNED",%u\n", \
441441
(SIZE), (ALIGN) / BITS_PER_UNIT); \
442442
} \
443443
} \

gcc/config/microblaze/microblaze.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -657,7 +657,7 @@ do { \
657657
} \
658658
fprintf (FILE, "%s", COMMON_ASM_OP); \
659659
assemble_name ((FILE), (NAME)); \
660-
fprintf ((FILE), ","HOST_WIDE_INT_PRINT_UNSIGNED",%u\n", \
660+
fprintf ((FILE), "," HOST_WIDE_INT_PRINT_UNSIGNED",%u\n", \
661661
(SIZE), (ALIGN) / BITS_PER_UNIT); \
662662
ASM_OUTPUT_TYPE_DIRECTIVE (FILE, NAME, "object"); \
663663
} while (0)
@@ -677,7 +677,7 @@ do { \
677677
} \
678678
fprintf (FILE, "%s", LCOMMON_ASM_OP); \
679679
assemble_name ((FILE), (NAME)); \
680-
fprintf ((FILE), ","HOST_WIDE_INT_PRINT_UNSIGNED",%u\n", \
680+
fprintf ((FILE), "," HOST_WIDE_INT_PRINT_UNSIGNED",%u\n", \
681681
(SIZE), (ALIGN) / BITS_PER_UNIT); \
682682
ASM_OUTPUT_TYPE_DIRECTIVE (FILE, NAME, "object"); \
683683
} while (0)

gcc/config/mips/mips.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -2910,7 +2910,7 @@ do { \
29102910

29112911
#undef ASM_OUTPUT_SKIP
29122912
#define ASM_OUTPUT_SKIP(STREAM,SIZE) \
2913-
fprintf (STREAM, "\t.space\t"HOST_WIDE_INT_PRINT_UNSIGNED"\n", (SIZE))
2913+
fprintf (STREAM, "\t.space\t" HOST_WIDE_INT_PRINT_UNSIGNED"\n", (SIZE))
29142914

29152915
/* This is how to output a string. */
29162916
#undef ASM_OUTPUT_ASCII

gcc/config/mmix/mmix.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -1654,7 +1654,7 @@ mmix_print_operand (FILE *stream, rtx x, int code)
16541654
fatal_insn ("MMIX Internal: Bad value for 'm', not a CONST_INT",
16551655
x);
16561656
}
1657-
fprintf (stream, "%"PRId64,
1657+
fprintf (stream, "%" PRId64,
16581658
(int64_t) (mmix_intval (x) - 1));
16591659
return;
16601660

@@ -2326,7 +2326,7 @@ mmix_output_register_setting (FILE *stream,
23262326
fprintf (stream, "\t");
23272327

23282328
if (insn_const_int_ok_for_constraint (value, CONSTRAINT_K))
2329-
fprintf (stream, "NEGU %s,0,%"PRId64, reg_names[regno], -value);
2329+
fprintf (stream, "NEGU %s,0,%" PRId64, reg_names[regno], -value);
23302330
else if (mmix_shiftable_wyde_value ((uint64_t) value))
23312331
{
23322332
/* First, the one-insn cases. */

gcc/config/msp430/msp430.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -1696,7 +1696,7 @@ msp430_output_aligned_decl_common (FILE * stream,
16961696
{
16971697
fprintf (stream, COMMON_ASM_OP);
16981698
assemble_name (stream, name);
1699-
fprintf (stream, ","HOST_WIDE_INT_PRINT_UNSIGNED",%u\n",
1699+
fprintf (stream, "," HOST_WIDE_INT_PRINT_UNSIGNED",%u\n",
17001700
size, align / BITS_PER_UNIT);
17011701
}
17021702
else

gcc/config/nios2/nios2.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -435,7 +435,7 @@ do \
435435
{ \
436436
fprintf ((FILE), "%s", COMMON_ASM_OP); \
437437
assemble_name ((FILE), (NAME)); \
438-
fprintf ((FILE), ","HOST_WIDE_INT_PRINT_UNSIGNED",%u\n", (SIZE), \
438+
fprintf ((FILE), "," HOST_WIDE_INT_PRINT_UNSIGNED",%u\n", (SIZE), \
439439
(ALIGN) / BITS_PER_UNIT); \
440440
} \
441441
while (0)

gcc/config/nvptx/nvptx.c

+3-3
Original file line numberDiff line numberDiff line change
@@ -600,7 +600,7 @@ nvptx_declare_function_name (FILE *file, const char *name, const_tree decl)
600600
sz = 1;
601601
if (cfun->machine->has_call_with_varargs)
602602
fprintf (file, "\t.reg.u%d %%outargs;\n"
603-
"\t.local.align 8 .b8 %%outargs_ar["HOST_WIDE_INT_PRINT_DEC"];\n",
603+
"\t.local.align 8 .b8 %%outargs_ar[" HOST_WIDE_INT_PRINT_DEC"];\n",
604604
BITS_PER_WORD, sz);
605605
if (cfun->machine->punning_buffer_size > 0)
606606
fprintf (file, "\t.reg.u%d %%punbuffer;\n"
@@ -612,7 +612,7 @@ nvptx_declare_function_name (FILE *file, const char *name, const_tree decl)
612612
if (sz > 0 || cfun->machine->has_call_with_sc)
613613
{
614614
fprintf (file, "\t.reg.u%d %%frame;\n"
615-
"\t.local.align 8 .b8 %%farray["HOST_WIDE_INT_PRINT_DEC"];\n",
615+
"\t.local.align 8 .b8 %%farray[" HOST_WIDE_INT_PRINT_DEC"];\n",
616616
BITS_PER_WORD, sz == 0 ? 1 : sz);
617617
fprintf (file, "\tcvta.local.u%d %%frame, %%farray;\n",
618618
BITS_PER_WORD);
@@ -1472,7 +1472,7 @@ nvptx_assemble_undefined_decl (FILE *file, const char *name, const_tree decl)
14721472
fprintf (file, ".extern %s .b8 ", section);
14731473
assemble_name_raw (file, name);
14741474
if (size > 0)
1475-
fprintf (file, "["HOST_WIDE_INT_PRINT_DEC"]", size);
1475+
fprintf (file, "[" HOST_WIDE_INT_PRINT_DEC"]", size);
14761476
fprintf (file, ";\n\n");
14771477
}
14781478

gcc/config/nvptx/nvptx.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -317,7 +317,7 @@ struct GTY(()) machine_function
317317
(ALIGN) / BITS_PER_UNIT); \
318318
assemble_name ((FILE), (NAME)); \
319319
if ((SIZE) > 0) \
320-
fprintf (FILE, "["HOST_WIDE_INT_PRINT_DEC"]", (SIZE)); \
320+
fprintf (FILE, "[" HOST_WIDE_INT_PRINT_DEC"]", (SIZE)); \
321321
fprintf (FILE, ";\n"); \
322322
} \
323323
while (0)
@@ -334,7 +334,7 @@ struct GTY(()) machine_function
334334
(ALIGN) / BITS_PER_UNIT); \
335335
assemble_name ((FILE), (NAME)); \
336336
if ((SIZE) > 0) \
337-
fprintf (FILE, "["HOST_WIDE_INT_PRINT_DEC"]", (SIZE)); \
337+
fprintf (FILE, "[" HOST_WIDE_INT_PRINT_DEC"]", (SIZE)); \
338338
fprintf (FILE, ";\n"); \
339339
} \
340340
while (0)

gcc/config/pa/pa.c

+3-3
Original file line numberDiff line numberDiff line change
@@ -8612,7 +8612,7 @@ pa_asm_output_aligned_bss (FILE *stream,
86128612

86138613
fprintf (stream, "\t.align %u\n", align / BITS_PER_UNIT);
86148614
ASM_OUTPUT_LABEL (stream, name);
8615-
fprintf (stream, "\t.block "HOST_WIDE_INT_PRINT_UNSIGNED"\n", size);
8615+
fprintf (stream, "\t.block " HOST_WIDE_INT_PRINT_UNSIGNED"\n", size);
86168616
}
86178617

86188618
/* Both the HP and GNU assemblers under HP-UX provide a .comm directive
@@ -8642,7 +8642,7 @@ pa_asm_output_aligned_common (FILE *stream,
86428642
switch_to_section (bss_section);
86438643

86448644
assemble_name (stream, name);
8645-
fprintf (stream, "\t.comm "HOST_WIDE_INT_PRINT_UNSIGNED"\n",
8645+
fprintf (stream, "\t.comm " HOST_WIDE_INT_PRINT_UNSIGNED"\n",
86468646
MAX (size, align / BITS_PER_UNIT));
86478647
}
86488648

@@ -8669,7 +8669,7 @@ pa_asm_output_aligned_local (FILE *stream,
86698669
#endif
86708670

86718671
ASM_OUTPUT_LABEL (stream, name);
8672-
fprintf (stream, "\t.block "HOST_WIDE_INT_PRINT_UNSIGNED"\n", size);
8672+
fprintf (stream, "\t.block " HOST_WIDE_INT_PRINT_UNSIGNED"\n", size);
86738673
}
86748674

86758675
/* Returns 1 if the 6 operands specified in OPERANDS are suitable for

0 commit comments

Comments
 (0)