diff options
author | Roger Sayle <roger@eyesopen.com> | 2003-05-16 02:15:00 +0000 |
---|---|---|
committer | Roger Sayle <sayle@gcc.gnu.org> | 2003-05-16 02:15:00 +0000 |
commit | ad14dc5c45ce3752ec2a7deb19f57fb2ed14c609 (patch) | |
tree | ee4fa697d46bb965db6ad7d432b46eaccc713553 /gcc | |
parent | 10d6c0d0429bc874848ba1f40f1c98d008d84379 (diff) | |
download | gcc-ad14dc5c45ce3752ec2a7deb19f57fb2ed14c609.zip gcc-ad14dc5c45ce3752ec2a7deb19f57fb2ed14c609.tar.gz gcc-ad14dc5c45ce3752ec2a7deb19f57fb2ed14c609.tar.bz2 |
* config/alpha/alpha.h (ASM_OUTPUT_SKIP): Fix typo.
From-SVN: r66855
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/config/alpha/alpha.h | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index a8f77d5..7a8beeb 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2003-05-15 Roger Sayle <roger@eyesopen.com> + + * config/alpha/alpha.h (ASM_OUTPUT_SKIP): Fix typo. + 2003-05-15 Eric Christopher <echristo@redhat.com> * cfgcleanup.c (merge_blocks): Fix return value. diff --git a/gcc/config/alpha/alpha.h b/gcc/config/alpha/alpha.h index 0e194a6..6b887a1 100644 --- a/gcc/config/alpha/alpha.h +++ b/gcc/config/alpha/alpha.h @@ -1619,7 +1619,7 @@ do { \ /* This is how to advance the location counter by SIZE bytes. */ #define ASM_OUTPUT_SKIP(FILE,SIZE) \ - fprintf (FILE, "\t.space "HOST_WIDE_INT_PRINT_UNSIGNED"%d\n", (SIZE)) + fprintf (FILE, "\t.space "HOST_WIDE_INT_PRINT_UNSIGNED"\n", (SIZE)) /* This says how to output an assembler line to define a global common symbol. */ |