diff options
author | Xavier Leroy <xavier.leroy@inria.fr> | 1995-12-05 13:07:49 +0000 |
---|---|---|
committer | Xavier Leroy <xavier.leroy@inria.fr> | 1995-12-05 13:07:49 +0000 |
commit | c51423ce737df4c8e18f468d9ca082a066387184 (patch) | |
tree | 7eff8d86c8429ee1caeb7cd74ed875a80f86f4d4 /asmrun/array.c | |
parent | b89eaae0b7da0dad633f87243cfb81a34ca3a76f (diff) |
fail.c: remettre les racines locales a zero avant de faire raise.
autres: modif du traitement des acces hors bornes.
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@506 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
Diffstat (limited to 'asmrun/array.c')
-rw-r--r-- | asmrun/array.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/asmrun/array.c b/asmrun/array.c index 7209a4ec0..91bacafd3 100644 --- a/asmrun/array.c +++ b/asmrun/array.c @@ -106,3 +106,7 @@ value make_array(init) } } +void array_bound_error() +{ + fatal_error("out-of-bound access in array or string"); +} |