diff options
author | Jeff Johnston <jjohnstn@redhat.com> | 2007-01-19 23:50:55 +0000 |
---|---|---|
committer | Jeff Johnston <jjohnstn@redhat.com> | 2007-01-19 23:50:55 +0000 |
commit | bdc75f5bf1318da1bbaeb9c4a76f5873c0475c76 (patch) | |
tree | 74e3b10c4c7f34f327b6ca4424e0abf32c2e028a /libgloss/spu/syscalls.c | |
parent | 8212f7686e07207011f84da2d19f2c2ed8ff998b (diff) | |
download | cygnal-bdc75f5bf1318da1bbaeb9c4a76f5873c0475c76.tar.gz cygnal-bdc75f5bf1318da1bbaeb9c4a76f5873c0475c76.tar.bz2 cygnal-bdc75f5bf1318da1bbaeb9c4a76f5873c0475c76.zip |
2007-01-19 Kazunori Asayama <asayama@sm.sony.co.jp>
* spu/syscalls.c: Replace vector with __vector.
Diffstat (limited to 'libgloss/spu/syscalls.c')
-rw-r--r-- | libgloss/spu/syscalls.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libgloss/spu/syscalls.c b/libgloss/spu/syscalls.c index 25da1a3d6..ff4f5515d 100644 --- a/libgloss/spu/syscalls.c +++ b/libgloss/spu/syscalls.c @@ -29,7 +29,6 @@ POSSIBILITY OF SUCH DAMAGE. Author: Andreas Neukoetter (ti95neuk@de.ibm.com) */ -#include <spu_intrinsics.h> #include "jsre.h" void @@ -38,7 +37,7 @@ _send_to_ppe (unsigned int signalcode, unsigned int opcode, void *data) unsigned int combined = ( ( opcode<<24 )&0xff000000 ) | ( ( unsigned int )data & 0x00ffffff ); - vector unsigned int stopfunc = { + __vector unsigned int stopfunc = { signalcode, /* stop */ (unsigned int) combined, 0x4020007f, /* nop */ |