From 47c7a3c43040306a79b45cdd02b51776923b50a4 Mon Sep 17 00:00:00 2001 From: Erik Walthinsen Date: Mon, 10 Sep 2001 20:02:12 +0000 Subject: [PATCH] fixed a minor annoyance (maybe major flaw) with comments, asm, and escaped newlines Original commit message from CVS: fixed a minor annoyance (maybe major flaw) with comments, asm, and escaped newlines --- gst/gstarch.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gst/gstarch.h b/gst/gstarch.h index 82b1cc8638..8b1c2d8dd0 100644 --- a/gst/gstarch.h +++ b/gst/gstarch.h @@ -136,7 +136,7 @@ struct minimal_stackframe { __asm__("move $sp,%0\n\t" : : "r"(stackpointer)); #define GST_ARCH_CALL(target) \ - __asm__("move $25,%1\n\t" // call via $25 \ + __asm__("move $25,%1\n\t" /* call via $25 */ \ "jal $25\n\t" : : "r"(target)); // assuming the stackframe is 16 bytes @@ -151,8 +151,8 @@ struct minimal_stackframe { __asm__("copy %0,%%sp\n\t" : : "r"(stackpointer)); #define GST_ARCH_CALL(target) \ - __asm__("copy $1,%%r22\n\t" // set call address \ - ".CALL\n\t" // call pseudo insn (why?) \ + __asm__("copy $1,%%r22\n\t" /* set call address */ \ + ".CALL\n\t" /* call pseudo insn (why?) */ \ "bl $$dyncall,%%r31\n\t" : : "r"(target)); // assume stackframe is 16 bytes