summaryrefslogtreecommitdiff
path: root/gst
diff options
context:
space:
mode:
authorErik Walthinsen <omega@temple-baptist.org>2001-01-31 22:54:08 +0000
committerErik Walthinsen <omega@temple-baptist.org>2001-01-31 22:54:08 +0000
commitdb5b4fbb46fc7534e40c967f2893b1c1e404e3c4 (patch)
treec442759888af3bfe20dc4f26eb76115fbd938076 /gst
parent804c1b2653f6885d82bdc0091db7837df81aff34 (diff)
ARM works!
Original commit message from CVS: ARM works!
Diffstat (limited to 'gst')
-rw-r--r--gst/gstarm.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/gst/gstarm.h b/gst/gstarm.h
index 3b626e969a..435b23063f 100644
--- a/gst/gstarm.h
+++ b/gst/gstarm.h
@@ -2,7 +2,7 @@
* 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
@@ -24,10 +24,10 @@
#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?