]> sourceware.org Git - glibc.git/blobdiff - sysdeps/mach/hurd/i386/init-first.c
* hurd/intr-msg.c (_hurd_intr_rpc_mach_msg): Add `break' after
[glibc.git] / sysdeps / mach / hurd / i386 / init-first.c
index a50e41892aefc418a35515433bfc31e63b2e4405..51892d52c23d006ae477116d248762b2483876a4 100644 (file)
@@ -247,22 +247,18 @@ init (int *data)
    we will run on, and jmp to the run-time address of `init1'; when it
    returns, it will run the user code with the argument data at the
    top of the stack.  */
-asm ("
- switch_stacks:
-  movl %eax, %esp
-  jmp *%ecx
-");
+asm ("switch_stacks:\n"
+     " movl %eax, %esp\n"
+     " jmp *%ecx");
 
 /* As in the stack-switching case, at this point our stack is unwound
    and callers' registers restored, and only %ecx and %eax communicate
    values from the lines above.  In this case we have stashed in %eax
    the user code return address.  Push it on the top of the stack so
    it acts as init1's return address, and then jump there.  */
-asm ("
-  call_init1:
-  push %eax
-  jmp *%ecx
-");
+asm ("call_init1:\n"
+     " push %eax\n"
+     " jmp *%ecx\n");
 
 
 /* Do the first essential initializations that must precede all else.  */
This page took 0.031197 seconds and 5 git commands to generate.