diff options
author | Jeff Law <law@gcc.gnu.org> | 1998-12-16 15:24:51 -0700 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1998-12-16 15:24:51 -0700 |
commit | a0d66c8d678e61730d6a51dc9e60af73410d1372 (patch) | |
tree | 26c7837413542129a58d2af069722749fc2c2764 /gcc/config/m68k/mot3300-crt0.S | |
parent | 83a86272a2e76ea304122db44f4808a5ce250631 (diff) | |
download | gcc-a0d66c8d678e61730d6a51dc9e60af73410d1372.zip gcc-a0d66c8d678e61730d6a51dc9e60af73410d1372.tar.gz gcc-a0d66c8d678e61730d6a51dc9e60af73410d1372.tar.bz2 |
dummy import to prevent merge lossage
From-SVN: r24349
Diffstat (limited to 'gcc/config/m68k/mot3300-crt0.S')
-rw-r--r-- | gcc/config/m68k/mot3300-crt0.S | 27 |
1 files changed, 8 insertions, 19 deletions
diff --git a/gcc/config/m68k/mot3300-crt0.S b/gcc/config/m68k/mot3300-crt0.S index e9fc1d4..3574a72 100644 --- a/gcc/config/m68k/mot3300-crt0.S +++ b/gcc/config/m68k/mot3300-crt0.S @@ -26,7 +26,7 @@ Boston, MA 02111-1307, USA. */ # define FILE(n) file n # define GLOBAL_SYM(s) global s # define LOCAL_LABEL(l) L%##l -# define SECTION(n) section n +# define IDENT(s) ident s # define TEXT text #else /* Assume we are using GNU as. */ # define COMM .comm @@ -35,8 +35,7 @@ Boston, MA 02111-1307, USA. */ # define FILE(name) .file name # define GLOBAL_SYM(s) .globl s # define LOCAL_LABEL(l) .L.##l -# define SECTION(n) .section n -# define STRING(s) .asciz s +# define IDENT(s) .section .comment;.asciz s # define TEXT .text #endif @@ -86,24 +85,14 @@ LOCAL_LABEL(isatty): trap &0 nop + GLOBAL_SYM (__stop_monitor) +__stop_monitor: + rts EVEN COMM splimit%,4 COMM environ,4 - COMM mcount,4 - COMM mcount%,4 - COMM monitor,4 - -#ifdef STRING - SECTION (.comment) - STRING ("$Id: mot3300-crt0.S,v 1.1 1997/08/11 15:57:32 law Exp $\n") - STRING ("Contributed by manfred@lts.sel.alcatel.de (Manfred Hollstein, Germany)\n") -#else - byte 'C,'o,'n,'t,'r,'i,'b,'u,'t,'e,'d,' ,'b,'y - byte ' ,'m,'a,'n,'f,'r,'e,'d,'@,'l,'t,'s,'.,'s - byte 'e,'l,'.,'a,'l,'c,'a,'t,'e,'l,'.,'d,'e,' - byte '(,'M,'a,'n,'f,'r,'e,'d,' ,'H,'o,'l,'l,'s - byte 't,'e,'i,'n,',,' ,'G,'e,'r,'m,'a,'n,'y,') - byte 10,0 -#endif + IDENT ("$Id: mot3300-crt0.S,v 1.1.1.2 1998/01/14 19:39:06 law Exp $") + IDENT ("Contributed by Manfred Hollstein (manfred@lts.sel.alcatel.de)") + IDENT ("Corrections by Philippe De Muyter (phdm@macqel.be)") |