]> sourceware.org Git - glibc.git/commitdiff
(START_MACHDEP): Add missing backslashes.
authorRoland McGrath <roland@gnu.org>
Fri, 9 Dec 1994 05:47:43 +0000 (05:47 +0000)
committerRoland McGrath <roland@gnu.org>
Fri, 9 Dec 1994 05:47:43 +0000 (05:47 +0000)
(CALL_WITH_SP): Cast FN to long int.

sysdeps/mach/alpha/sysdep.h

index 207fb58865deef49254845702def67b922a1906e..166c711d5e1269ef7a483f62b87f01483729b2ea 100644 (file)
@@ -21,16 +21,16 @@ Cambridge, MA 02139, USA.  */
 #define LOSE asm volatile ("call_pal 0") /* halt */
 
 #define START_MACHDEP \
-  asm ("_start:        mov     $30, $16\n" /* Put initial SP in a0.  */
-       "       br      $27, 1f\n" /* Load GP from PC.  */
-       "1:     ldgp    $29, 0($27)\n"
+  asm ("_start:        mov     $30, $16\n" /* Put initial SP in a0.  */              \
+       "       br      $27, 1f\n" /* Load GP from PC.  */                    \
+       "1:     ldgp    $29, 0($27)\n"                                        \
        "       jmp     $26, _start0"); /* Jump to _start0; don't return.  */
 #define START_ARGS     char **sparg
 #define SNARF_ARGS(argc, argv, envp) \
   (envp = &(argv = &sparg[1])[(argc = *(int *) sparg) + 1])
 
 #define CALL_WITH_SP(fn, sp) \
-  ({ register long int __fn = fn, __sp = (long int) sp; \
+  ({ register long int __fn = (long int) fn, __sp = (long int) sp; \
      asm volatile ("mov %0,$30; jmp $31, %1; ldgp $29, 0(%1)" \
                   : : "r" (__sp), "r" (__fn)); })
 
This page took 0.044895 seconds and 5 git commands to generate.