(L_eh, i386): Remove in-line comments in assembly code--the '#'
authorkenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 25 May 1995 11:35:27 +0000 (11:35 +0000)
committerkenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 25 May 1995 11:35:27 +0000 (11:35 +0000)
character is not valid for the SYSV as.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@9817 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/libgcc2.c

index 8f3db8a..b22db4e 100644 (file)
@@ -2306,16 +2306,16 @@ __unwind_function(void *ptr)
   /* Undo current frame */
   asm("movl %ebp,%esp");
   asm("popl %ebp");
-  asm("# like ret, but stay here");
+  /* like ret, but stay here */
   asm("addl $4,%esp");
   
   /* Now, undo previous frame. */
   /* This is a test routine, as we have to dynamically probe to find out
      what to pop for certain, this is just a guess. */
   asm("leal -16(%ebp),%esp");
-  asm("pop %eax # really for popl %ebx");
-  asm("pop %eax # really for popl %esi");
-  asm("pop %eax # really for popl %edi");
+  asm("pop %eax"); /* really for popl %ebx */
+  asm("pop %eax"); /* really for popl %esi */
+  asm("pop %eax"); /* really for popl %edi */
   asm("movl %ebp,%esp");
   asm("popl %ebp");