blob: cfa5d718e9eec1e98dbc4958c1d1121a0ad2e9c2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
--- gcc/config/picochip/picochip.h.orig 2013-01-10 20:38:27 UTC
+++ gcc/config/picochip/picochip.h
@@ -596,7 +596,7 @@ do {
/* Assembler Commands for Alignment */
#define ASM_OUTPUT_SKIP(STREAM,BYTES) \
- fprintf(STREAM, ".skip "HOST_WIDE_INT_PRINT_UNSIGNED"\n", BYTES);
+ fprintf(STREAM, ".skip " HOST_WIDE_INT_PRINT_UNSIGNED "\n", BYTES);
#define ASM_OUTPUT_ALIGN(STREAM,POWER) \
fprintf(STREAM, ".align %u\n", 1 << POWER);
|