AC_DEFINE(HAVE_CPU_I386) ;;
xpowerpc) HAVE_CPU_PPC=yes ;
AC_DEFINE(HAVE_CPU_PPC) ;;
+ xalpha) HAVE_CPU_ALPHA=yes ;
+ AC_DEFINE(HAVE_CPU_ALPHA) ;;
+ xarm) HAVE_CPU_ARM=yes ;
+ AC_DEFINE(HAVE_CPU_ARM) ;;
esac
dnl Determine endianness
* Copyright (C) 1999,2000 Erik Walthinsen <omega@cse.ogi.edu>
* 2000 Wim Taymans <wtay@chello.be>
*
- * gstppc.h: Header for PPC-specific architecture issues
+ * gstarm.h: Header for ARM-specific architecture issues
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
#define __GST_GSTARM_H__
#define GST_ARCH_SET_SP(stackpointer) \
- __asm__( "mov%?\t%!sp, %0" : : "r"(stackpointer));
+ __asm__( "mov sp, %0" : : "r"(stackpointer));
#define GST_ARCH_CALL(target) \
- __asm__( "mov%?\t%!pc, %1" : : "r"(target) );
+ __asm__( "mov pc, %0" : : "r"(target) );
// Need to get more information about the stackframe format
// and get the fields more correct. Check GDB sources maybe?