summaryrefslogtreecommitdiffstats
path: root/runtime/stack.c
diff options
context:
space:
mode:
authorhunt <hunt>2007-05-30 14:33:55 +0000
committerhunt <hunt>2007-05-30 14:33:55 +0000
commit79e80fedc4bcac4cd1d5a684537f20a4331efd4e (patch)
treeaccd5d9105d2438ae2f0171ee3d3813de1b25f11 /runtime/stack.c
parent2cbe17e95de653099901e34124ab1a376e150514 (diff)
downloadsystemtap-steved-79e80fedc4bcac4cd1d5a684537f20a4331efd4e.tar.gz
systemtap-steved-79e80fedc4bcac4cd1d5a684537f20a4331efd4e.tar.xz
systemtap-steved-79e80fedc4bcac4cd1d5a684537f20a4331efd4e.zip
2007-05-30 Martin Hunt <hunt@redhat.com>
Patch from Quentin Barnes. * arith.c: Add arm support for 64-bit division. * copy.c: Enable arm support. * loc2c-runtime.h: Ditto. * regs.[ch]: Ditto. * stack.c: Include stack-arm.c. * stack-arm.c: New file. * time.c (_stp_gettimeofday_ns): hack for arm. See PR 4569.
Diffstat (limited to 'runtime/stack.c')
-rw-r--r--runtime/stack.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/runtime/stack.c b/runtime/stack.c
index dcf23e06..5dc627b7 100644
--- a/runtime/stack.c
+++ b/runtime/stack.c
@@ -35,6 +35,8 @@ static int _stp_kta(unsigned long addr);
#include "stack-i386.c"
#elif defined (__powerpc64__)
#include "stack-ppc64.c"
+#elif defined (__arm__)
+#include "stack-arm.c"
#elif defined (__s390__) || defined (__s390x__)
#include "stack-s390.c"
#else