base/asm-common.h: Settle on no spaces around keyword-argument `='.
authorMark Wooding <mdw@distorted.org.uk>
Mon, 2 Sep 2019 11:49:03 +0000 (12:49 +0100)
committerMark Wooding <mdw@distorted.org.uk>
Sun, 8 Sep 2019 10:37:54 +0000 (11:37 +0100)
base/asm-common.h

index 3ef0de9..10a79a5 100644 (file)
@@ -453,7 +453,7 @@ name:
 #define WHOLE(reg) _REGFORM(reg, r)
 
 // Stack management and unwinding.
-.macro setfp   fp, offset = 0
+.macro setfp   fp, offset=0
   .if \offset == 0
        mov     \fp, R_sp(r)
 #if __ELF__
@@ -476,7 +476,7 @@ name:
        .macro dropfp; _dropfp  \fp, \offset; .endm
 .endm
 
-.macro _dropfp fp, offset = 0
+.macro _dropfp fp, offset=0
   .if \offset == 0
        mov     R_sp(r), \fp
 #if __ELF__
@@ -989,7 +989,7 @@ name:
 #define QQ(qlo, qhi) D0(qlo)-D1(qhi)
 
 // Stack management and unwinding.
-.macro setfp   fp, offset = 0
+.macro setfp   fp, offset=0
   .if \offset == 0
        mov     \fp, sp
          .setfp \fp, sp
@@ -1001,7 +1001,7 @@ name:
        .L$_frameptr_p = -1
 .endm
 
-.macro _dropfp fp, offset = 0
+.macro _dropfp fp, offset=0
   .if \offset == 0
        mov     sp, \fp
   .else
@@ -1074,7 +1074,7 @@ name:
 .endm
 
 // Stack management and unwinding.
-.macro setfp   fp, offset = 0
+.macro setfp   fp, offset=0
   // If you're just going through the motions with a fixed-size stack frame,
   // then you want to say `add x29, sp, #OFFSET' directly, which will avoid
   // pointlessly restoring sp later.
@@ -1090,7 +1090,7 @@ name:
        .L$_frameptr_p = -1
 .endm
 
-.macro _dropfp fp, offset = 0
+.macro _dropfp fp, offset=0
   .if \offset == 0
        mov     sp, \fp
          .cfi_def_cfa_register sp