mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-16 19:25:18 +00:00
Applied a cothread setup patch for IRIX from Nick Blievers
Original commit message from CVS: Applied a cothread setup patch for IRIX from Nick Blievers <nick.blievers@adacel.com>
This commit is contained in:
parent
e279738a3f
commit
4771e9affc
1 changed files with 2 additions and 2 deletions
|
@ -134,10 +134,10 @@ struct minimal_stackframe {
|
|||
#elif defined(HAVE_CPU_MIPS)
|
||||
|
||||
#define GST_ARCH_SET_SP(stackpointer) \
|
||||
__asm__("move $sp,%0\n\t" : : "r"(stackpointer));
|
||||
__asm__("lw $sp,0(%0)\n\t" : : "r"(stackpointer));
|
||||
|
||||
#define GST_ARCH_CALL(target) \
|
||||
__asm__("move $25,%1\n\t" /* call via $25 */ \
|
||||
__asm__("lw $25,0(%0)\n\t" /* call via $25 */ \
|
||||
"jal $25\n\t" : : "r"(target));
|
||||
|
||||
/* assuming the stackframe is 16 bytes */
|
||||
|
|
Loading…
Reference in a new issue