From 21a24a532dd5271431263b81a88da71cd6a84f9c Mon Sep 17 00:00:00 2001 From: sayle Date: Fri, 16 May 2003 02:15:00 +0000 Subject: * config/alpha/alpha.h (ASM_OUTPUT_SKIP): Fix typo. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@66855 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/ChangeLog | 4 ++++ gcc/config/alpha/alpha.h | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index a8f77d500e0..7a8beebd911 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2003-05-15 Roger Sayle + + * config/alpha/alpha.h (ASM_OUTPUT_SKIP): Fix typo. + 2003-05-15 Eric Christopher * cfgcleanup.c (merge_blocks): Fix return value. diff --git a/gcc/config/alpha/alpha.h b/gcc/config/alpha/alpha.h index 0e194a6d3dc..6b887a19151 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. */ -- cgit v1.2.3