diff options
author | "Jan-Benedict Glaw" <jbglaw@lug-owl.de> | 2006-01-30 21:23:23 +0000 |
---|---|---|
committer | "Jan-Benedict Glaw" <jbglaw@lug-owl.de> | 2006-01-30 21:23:23 +0000 |
commit | f118c166cb9967908ff6df233eaacffc3e8e3642 (patch) | |
tree | 78e2140c12d183e65d0196e9a65d27c1a0debfe1 /libc/sysdeps/linux/vax/crt1.S | |
parent | 6af91aa03ac4492a6a1c884b3c02f2b0ce5f9d4f (diff) |
Assebler sources ment to be preprocessed shouldn't contain assembler
comments, but C comments instead...
Diffstat (limited to 'libc/sysdeps/linux/vax/crt1.S')
-rw-r--r-- | libc/sysdeps/linux/vax/crt1.S | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/libc/sysdeps/linux/vax/crt1.S b/libc/sysdeps/linux/vax/crt1.S index ea9c105d6..70960988d 100644 --- a/libc/sysdeps/linux/vax/crt1.S +++ b/libc/sysdeps/linux/vax/crt1.S @@ -35,16 +35,16 @@ _start: movl %sp, %r3 /* R3 = argv = &argv[0] */ #if (defined L_crt1 || defined L_gcrt1) && defined __UCLIBC_CTOR_DTOR__ - pushl %r0 # stack_end - pushl $0 # rtld_fini. This is probably needed for the case - # where a dynamic linker is involved. So this is - # an open FIXME that needs to be addressed at some - # time... + pushl %r0 /* stack_end */ + pushl $0 /* rtld_fini. This is probably needed for the */ + /* case where a dynamic linker is involved. So */ + /* this is an open FIXME that needs to be */ + /* addressed at some time... */ pushl $_fini pushl $_init - pushl %r3 /* Argument pointer */ - pushl %r4 /* And the argument count */ - pushl $main /* main() */ + pushl %r3 /* Argument pointer */ + pushl %r4 /* And the argument count */ + pushl $main /* main() */ /* We need to call __uClibc_main which should not return. * __uClibc_main (int (*main) (int, char **, char **), @@ -66,8 +66,8 @@ _start: calls $3, __uClibc_main #endif - /* The above __uClibc_start_main() shouldn't ever return. If it - does, we just crash. */ + /* The above __uClibc_start_main() shouldn't ever return. If it */ + /* does, we just crash. */ halt .align 2 |