mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 05:06:17 +00:00
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
This commit is contained in:
parent
c6a04366a3
commit
47c7a3c430
1 changed files with 3 additions and 3 deletions
|
@ -136,7 +136,7 @@ struct minimal_stackframe {
|
||||||
__asm__("move $sp,%0\n\t" : : "r"(stackpointer));
|
__asm__("move $sp,%0\n\t" : : "r"(stackpointer));
|
||||||
|
|
||||||
#define GST_ARCH_CALL(target) \
|
#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));
|
"jal $25\n\t" : : "r"(target));
|
||||||
|
|
||||||
// assuming the stackframe is 16 bytes
|
// assuming the stackframe is 16 bytes
|
||||||
|
@ -151,8 +151,8 @@ struct minimal_stackframe {
|
||||||
__asm__("copy %0,%%sp\n\t" : : "r"(stackpointer));
|
__asm__("copy %0,%%sp\n\t" : : "r"(stackpointer));
|
||||||
|
|
||||||
#define GST_ARCH_CALL(target) \
|
#define GST_ARCH_CALL(target) \
|
||||||
__asm__("copy $1,%%r22\n\t" // set call address \
|
__asm__("copy $1,%%r22\n\t" /* set call address */ \
|
||||||
".CALL\n\t" // call pseudo insn (why?) \
|
".CALL\n\t" /* call pseudo insn (why?) */ \
|
||||||
"bl $$dyncall,%%r31\n\t" : : "r"(target));
|
"bl $$dyncall,%%r31\n\t" : : "r"(target));
|
||||||
|
|
||||||
// assume stackframe is 16 bytes
|
// assume stackframe is 16 bytes
|
||||||
|
|
Loading…
Reference in a new issue