From fd4cb6b02064317bd5a94e0c2a1c2e2bb3722169 Mon Sep 17 00:00:00 2001 From: Richard Kenner Date: Thu, 25 May 1995 07:35:27 -0400 Subject: [PATCH] (L_eh, i386): Remove in-line comments in assembly code--the '#' character is not valid for the SYSV as. From-SVN: r9817 --- gcc/libgcc2.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/gcc/libgcc2.c b/gcc/libgcc2.c index 8f3db8aef8b..b22db4e24f7 100644 --- a/gcc/libgcc2.c +++ b/gcc/libgcc2.c @@ -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");