diff options
| author | shebs <shebs@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-09-13 04:00:56 +0000 |
|---|---|---|
| committer | shebs <shebs@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-09-13 04:00:56 +0000 |
| commit | f087dfe1a3c810a29021b8422852f69ec7dd42e7 (patch) | |
| tree | 1a3bcc888c552deaa75a88d5e06879c43b57aa38 | |
| parent | a08b74c8bf89232cd59a439190b786dae8a87a5f (diff) | |
| download | ppe42-gcc-f087dfe1a3c810a29021b8422852f69ec7dd42e7.tar.gz ppe42-gcc-f087dfe1a3c810a29021b8422852f69ec7dd42e7.zip | |
* config/darwin.h (USER_LABEL_PREFIX): Define here...
* config/i386/darwin.h: ... instead of here.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@57090 138bc75d-0d04-0410-961f-82ee72b054a4
| -rw-r--r-- | gcc/ChangeLog | 3 | ||||
| -rw-r--r-- | gcc/config/darwin.h | 4 | ||||
| -rw-r--r-- | gcc/config/i386/darwin.h | 5 |
3 files changed, 7 insertions, 5 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index a5bdc1d0059..814fa4040e8 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,8 @@ 2002-09-12 Stan Shebs <shebs@apple.com> + * config/darwin.h (USER_LABEL_PREFIX): Define here... + * config/i386/darwin.h: ... instead of here. + * target.h (struct gcc_target): New field terminate_dw2_eh_frame_info. * target-def.h (TARGET_TERMINATE_DW2_EH_FRAME_INFO): Define. diff --git a/gcc/config/darwin.h b/gcc/config/darwin.h index 0c327b93b30..62cfa4be7f4 100644 --- a/gcc/config/darwin.h +++ b/gcc/config/darwin.h @@ -141,6 +141,10 @@ do { text_section (); \ #define TARGET_ASM_CONSTRUCTOR machopic_asm_out_constructor #define TARGET_ASM_DESTRUCTOR machopic_asm_out_destructor +/* Always prefix with an underscore. */ + +#define USER_LABEL_PREFIX "_" + /* Don't output a .file directive. That is only used by the assembler for error reporting. */ diff --git a/gcc/config/i386/darwin.h b/gcc/config/i386/darwin.h index b37d4e89094..55c29fd945f 100644 --- a/gcc/config/i386/darwin.h +++ b/gcc/config/i386/darwin.h @@ -72,11 +72,6 @@ Boston, MA 02111-1307, USA. */ #define LPREFIX "L" -/* This definition is unlikely to be used, but provide it just in - case. */ - -#define USER_LABEL_PREFIX "_" - /* Assembler pseudos to introduce constants of various size. */ #define ASM_BYTE_OP "\t.byte\t" |

