diff options
author | Damien Doligez <damien.doligez-inria.fr> | 2012-02-10 16:15:24 +0000 |
---|---|---|
committer | Damien Doligez <damien.doligez-inria.fr> | 2012-02-10 16:15:24 +0000 |
commit | e7f5b858c2aee1fc6caeefc3d7c80ca696be2897 (patch) | |
tree | f6e4f76927ce2a4f604fcc0596f1b6505cc39fe3 /asmrun/sparc.S | |
parent | d7cbf2a01a390f2fe6bedef1292bb5aa55d8b6f7 (diff) |
More renaming to OCaml
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@12149 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
Diffstat (limited to 'asmrun/sparc.S')
-rw-r--r-- | asmrun/sparc.S | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/asmrun/sparc.S b/asmrun/sparc.S index dd1e5844a..ed4e34987 100644 --- a/asmrun/sparc.S +++ b/asmrun/sparc.S @@ -217,7 +217,7 @@ L100: add %sp, 96 + 15*8, %g1 retl add %sp, 20*4 + 15*8, %sp /* in delay slot */ -/* Call a C function from Caml */ +/* Call a C function from OCaml */ .global Caml_c_call /* Function to call is in %g2 */ @@ -239,7 +239,7 @@ Caml_c_call: retl ld [%g1 + %lo(Caml_young_ptr)], Alloc_ptr /* in delay slot */ -/* Start the Caml program */ +/* Start the OCaml program */ .global Caml_start_program Caml_start_program: @@ -257,7 +257,7 @@ L108: Load(Caml_gc_regs, %l3) st %l0, [%sp + 96] st %l1, [%sp + 100] - /* Set up a trap frame to catch exceptions escaping the Caml code */ + /* Set up a trap frame to catch exceptions escaping the OCaml code */ call L111 st %l3, [%sp + 104] b L110 @@ -274,7 +274,7 @@ L111: sub %sp, 8, %sp #else Load(Caml_young_limit, Alloc_limit) #endif - /* Call the Caml code */ + /* Call the OCaml code */ L109: call %l2 nop /* Pop trap frame and restore caml_exception_pointer */ |