diff options
author | sayle <sayle@138bc75d-0d04-0410-961f-82ee72b054a4> | 2006-09-12 17:29:05 +0000 |
---|---|---|
committer | sayle <sayle@138bc75d-0d04-0410-961f-82ee72b054a4> | 2006-09-12 17:29:05 +0000 |
commit | 6e2ff8f8a01a57ab9e67ca94a4aa6f33d7ab053e (patch) | |
tree | 00deb680b74ad4899fad4f20271b17e78e3b2996 /gcc/config/alpha | |
parent | 6dbdfeeb2c19eea81fbf2224193e67815a8beaa9 (diff) | |
download | gcc-6e2ff8f8a01a57ab9e67ca94a4aa6f33d7ab053e.tar.gz |
* target-def.h (TARGET_ASM_OPEN_PAREN): Guard with an #ifndef.
(TARGET_ASM_CLOSE_PAREN): Likewise.
* config/alpha/osf5.h (TARGET_ASM_OPEN_PAREN): Define.
(TARGET_ASM_CLOSE_PAREN): Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@116898 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/alpha')
-rw-r--r-- | gcc/config/alpha/osf5.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/gcc/config/alpha/osf5.h b/gcc/config/alpha/osf5.h index c6cd7ec6bba..1926a3c2f1e 100644 --- a/gcc/config/alpha/osf5.h +++ b/gcc/config/alpha/osf5.h @@ -1,5 +1,5 @@ /* Definitions of target machine for GNU compiler, for DEC Alpha on Tru64 5. - Copyright (C) 2000, 2001, 2004, 2005 Free Software Foundation, Inc. + Copyright (C) 2000, 2001, 2004, 2005, 2006 Free Software Foundation, Inc. This file is part of GCC. @@ -51,3 +51,7 @@ #undef TARGET_C99_FUNCTIONS #define TARGET_C99_FUNCTIONS 1 +/* The native assembler doesn't understand parenthesis. */ +#define TARGET_ASM_OPEN_PAREN "" +#define TARGET_ASM_CLOSE_PAREN "" + |