diff options
author | Xavier Leroy <xavier.leroy@inria.fr> | 2003-12-20 11:05:51 +0000 |
---|---|---|
committer | Xavier Leroy <xavier.leroy@inria.fr> | 2003-12-20 11:05:51 +0000 |
commit | 661a890b17a40c30b2cda8004b45ee38bed7bac2 (patch) | |
tree | c0fb998dfb2ead98c292543b4cc5a470c87b612f | |
parent | d821d4bb8ab6e264487b34a9d9ca6f090b53b960 (diff) |
Typo dans la precedente correction
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@6031 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
-rw-r--r-- | asmrun/amd64.S | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/asmrun/amd64.S b/asmrun/amd64.S index 2228f7926..50eecf538 100644 --- a/asmrun/amd64.S +++ b/asmrun/amd64.S @@ -252,8 +252,8 @@ FUNCTION(caml_start_program) FUNCTION(raise_caml_exception) movq %rdi, %rax movq caml_exception_pointer(%rip), %rsp - popq %r14 /* Recover previous exception handler */ - movq youg_ptr(%rip), %r15 /* Reload alloc ptr */ + popq %r14 /* Recover previous exception handler */ + movq young_ptr(%rip), %r15 /* Reload alloc ptr */ ret /* Callback from C to Caml */ |