From 79e80fedc4bcac4cd1d5a684537f20a4331efd4e Mon Sep 17 00:00:00 2001 From: hunt Date: Wed, 30 May 2007 14:33:55 +0000 Subject: 2007-05-30 Martin Hunt 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. --- runtime/stack.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'runtime/stack.c') 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 -- cgit