aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorRichard Earnshaw <rearnsha@arm.com>2002-01-23 01:17:51 +0000
committerRichard Earnshaw <rearnsha@gcc.gnu.org>2002-01-23 01:17:51 +0000
commit7458a9f0307e5f2e074209baeb59e60112d86004 (patch)
tree74e857f9ae93c0b68461fe1a95fcae0183bfbec0 /gcc
parentb4ae79f74564b959fb6a8bdc362b23dce5059e16 (diff)
downloadgcc-7458a9f0307e5f2e074209baeb59e60112d86004.zip
gcc-7458a9f0307e5f2e074209baeb59e60112d86004.tar.gz
gcc-7458a9f0307e5f2e074209baeb59e60112d86004.tar.bz2
netbsd-aout.h (SWITCH_TAKES_ARG): Remove bogus white space after backslash.
* config/netbsd-aout.h (SWITCH_TAKES_ARG): Remove bogus white space after backslash. (ASM_DECLARE_OBJECT_NAME): Add missing backslash before final line. From-SVN: r49117
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog6
-rw-r--r--gcc/config/netbsd-aout.h4
2 files changed, 8 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index a939e9b..77cd5d9 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,9 @@
+2002-01-22 Richard Earnshaw <rearnsha@arm.com>
+
+ * config/netbsd-aout.h (SWITCH_TAKES_ARG): Remove bogus white space
+ after backslash.
+ (ASM_DECLARE_OBJECT_NAME): Add missing backslash before final line.
+
2002-01-22 Alexandre Oliva <aoliva@redhat.com>
* config/i386/freebsd-aout.h (ASM_QUAD): Undefine.
diff --git a/gcc/config/netbsd-aout.h b/gcc/config/netbsd-aout.h
index 867f99a..55a9bf4 100644
--- a/gcc/config/netbsd-aout.h
+++ b/gcc/config/netbsd-aout.h
@@ -22,7 +22,7 @@ Boston, MA 02111-1307, USA. */
/* This defines which switch letters take arguments. */
#undef SWITCH_TAKES_ARG
-#define SWITCH_TAKES_ARG(CHAR) \
+#define SWITCH_TAKES_ARG(CHAR) \
(DEFAULT_SWITCH_TAKES_ARG(CHAR) \
|| (CHAR) == 'R')
@@ -160,7 +160,7 @@ Boston, MA 02111-1307, USA. */
int_size_in_bytes (TREE_TYPE (DECL))); \
} \
ASM_OUTPUT_LABEL(FILE, NAME); \
- }
+ } \
while (0)