]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
* sysdeps/unix/bsd/osf/alpha/start.S: Change comments to be
authorBrendan Kehoe <brendan@zen.org>
Sat, 15 Apr 1995 02:07:14 +0000 (02:07 +0000)
committerBrendan Kehoe <brendan@zen.org>
Sat, 15 Apr 1995 02:07:14 +0000 (02:07 +0000)
        preprocessor comments, not assembler comments.

sysdeps/unix/bsd/osf/alpha/start.S

index 52eb03667fb557accc35766f601d2a0c4e945d68..f3995a2fd660b62505f4c8a5673134bac2d3e1ec 100644 (file)
@@ -20,40 +20,42 @@ Cambridge, MA 02139, USA.  */
 
 .comm errno,           4
 
-!.sdata
-!.globl STARTFRM
-!STARTFRM = 0
+#if 0
+.sdata
+.globl STARTFRM
+STARTFRM = 0
+#endif
 
 .text
 ENTRY(__start)
        lda     sp, -16(sp)
        stq     zero, 8(sp)
 
-       ! This branch puts the address of the current insn in t0.
+       /* This branch puts the address of the current insn in t0. */
        br      t0, 10f
 10:
-       ! We set the GP register by using the address of the ldgp
-       ! (what we just put into t0).
+       /* We set the GP register by using the address of the ldgp */
+       /* (what we just put into t0). */
        ldgp    gp, 0(t0)
 
-       ! get argc
+       /* get argc */
        ldl     a0, 16(sp)
 
-       ! get argv
+       /* get argv */
        lda     a1, 24(sp)
 
-       ! move ahead to envp
+       /* move ahead to envp */
        s8addq  a0, a1, a2
        addq    a2, 0x8, a2
 
-       ! Store in environ.
+       /* Store in environ. */
        stq     a2, environ
 
-       ! Clear out errno.
-!      ldgp    gp, 0(t12)
+       /* Clear out errno. */
+/*     ldgp    gp, 0(t12) */
        stl     zero, errno
 
-       ! Call main.
+       /* Call main. */
        jsr     ra, main
        ldgp    gp, 0(ra)