fixed #define line continuation in gstsparc.h

Original commit message from CVS:
fixed #define line continuation in gstsparc.h
This commit is contained in:
Erik Walthinsen 2001-05-28 22:23:18 +00:00
parent eee30f5bc2
commit eb20f704f3

View file

@ -24,11 +24,11 @@
#define __GST_GSTSPARC_H__
#define GST_ARCH_SET_SP(stackpointer) \
__asm__( "ta 3\n\t"
__asm__( "ta 3\n\t" \
"mov %0, %%sp" : : "r"(stackpointer));
#define GST_ARCH_CALL(target) \
__asm__( "call %0,0\n\t"
__asm__( "call %0,0\n\t" \
"nop" : : "r"(target) );
#define GST_ARCH_PRESETJMP() \