Commit fb8cbd3c by Roger Sayle Committed by Roger Sayle

target-def.h (TARGET_ASM_OPEN_PAREN): Guard with an #ifndef.


	* 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.

From-SVN: r116898
parent b598cb38
2006-09-12 Roger Sayle <roger@eyesopen.com> 2006-09-12 Roger Sayle <roger@eyesopen.com>
* 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.
2006-09-12 Roger Sayle <roger@eyesopen.com>
PR target/22223 PR target/22223
* config/alpha/alpha.c (alpha_start_function): Don't emit stack * config/alpha/alpha.c (alpha_start_function): Don't emit stack
frame information for frames larger than 512 Kbytes on Tru64 when frame information for frames larger than 512 Kbytes on Tru64 when
......
/* Definitions of target machine for GNU compiler, for DEC Alpha on Tru64 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. This file is part of GCC.
...@@ -51,3 +51,7 @@ ...@@ -51,3 +51,7 @@
#undef TARGET_C99_FUNCTIONS #undef TARGET_C99_FUNCTIONS
#define TARGET_C99_FUNCTIONS 1 #define TARGET_C99_FUNCTIONS 1
/* The native assembler doesn't understand parenthesis. */
#define TARGET_ASM_OPEN_PAREN ""
#define TARGET_ASM_CLOSE_PAREN ""
/* Default initializers for a generic GCC target. /* Default initializers for a generic GCC target.
Copyright (C) 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006
Free Software Foundation, Inc.
This program is free software; you can redistribute it and/or modify it This program is free software; you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by the under the terms of the GNU General Public License as published by the
...@@ -30,8 +31,13 @@ Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. ...@@ -30,8 +31,13 @@ Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
definition in a #ifndef, since files include tm.h before this one. */ definition in a #ifndef, since files include tm.h before this one. */
/* Assembler output. */ /* Assembler output. */
#ifndef TARGET_ASM_OPEN_PAREN
#define TARGET_ASM_OPEN_PAREN "(" #define TARGET_ASM_OPEN_PAREN "("
#endif
#ifndef TARGET_ASM_CLOSE_PAREN
#define TARGET_ASM_CLOSE_PAREN ")" #define TARGET_ASM_CLOSE_PAREN ")"
#endif
#define TARGET_ASM_BYTE_OP "\t.byte\t" #define TARGET_ASM_BYTE_OP "\t.byte\t"
#define TARGET_ASM_ALIGNED_HI_OP "\t.short\t" #define TARGET_ASM_ALIGNED_HI_OP "\t.short\t"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment