diff options
author | Jun FURUSE / 古瀬 淳 <jun.furuse@gmail.com> | 2008-01-28 05:29:20 +0000 |
---|---|---|
committer | Jun FURUSE / 古瀬 淳 <jun.furuse@gmail.com> | 2008-01-28 05:29:20 +0000 |
commit | 3f4a98da0fbf8a87c674d6737d8c6cec7e8567e5 (patch) | |
tree | f5aa13505824d708414ece1f00219b811315c44a /asmrun | |
parent | 30f3fa2c5bc27f8c59930741aa1b6dd5a34a6b40 (diff) | |
download | ocaml-gcaml3090.tar.gz |
3.09.1 updategcaml3090
git-svn-id: http://caml.inria.fr/svn/ocaml/branches/gcaml3090@8792 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
Diffstat (limited to 'asmrun')
-rw-r--r-- | asmrun/amd64.S | 2 | ||||
-rw-r--r-- | asmrun/signals_osdep.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/asmrun/amd64.S b/asmrun/amd64.S index b1f204f442..5fd5440cfc 100644 --- a/asmrun/amd64.S +++ b/asmrun/amd64.S @@ -52,7 +52,7 @@ FUNCTION(caml_call_gc) pushq %rdi pushq %rbx pushq %rax - movq %rsp, caml_gc_regs + movq %rsp, caml_gc_regs(%rip) /* Save floating-point registers */ subq $(16*8), %rsp movlpd %xmm0, 0*8(%rsp) diff --git a/asmrun/signals_osdep.h b/asmrun/signals_osdep.h index aa4594e898..f64c99f158 100644 --- a/asmrun/signals_osdep.h +++ b/asmrun/signals_osdep.h @@ -89,7 +89,7 @@ typedef int context_reg; #define CONTEXT_PC (context->sc_pc) #define CONTEXT_EXCEPTION_POINTER (context->sc_regs[30]) - #define CONTEXT_YOUNG_LIMIT (context->sc_regs[22] + #define CONTEXT_YOUNG_LIMIT (context->sc_regs[22]) #define CONTEXT_YOUNG_PTR (context->sc_regs[23]) /****************** PowerPC, MacOS X */ |