aboutsummaryrefslogtreecommitdiffstats
path: root/driver/Interp.ml
diff options
context:
space:
mode:
authorxleroy <xleroy@fca1b0fc-160b-0410-b1d3-a4f43f01ea2e>2014-02-19 09:55:45 +0000
committerxleroy <xleroy@fca1b0fc-160b-0410-b1d3-a4f43f01ea2e>2014-02-19 09:55:45 +0000
commit3ec022950ec233a2af418aacd1755fce4d701724 (patch)
tree154256c5c73fda06e874fb05695e14e610ba8ad4 /driver/Interp.ml
parent9aeba45962e8ba5cde5d81fb701a4c9a3963f4a5 (diff)
downloadcompcert-kvx-3ec022950ec233a2af418aacd1755fce4d701724.tar.gz
compcert-kvx-3ec022950ec233a2af418aacd1755fce4d701724.zip
Add option -Os to optimize for code size rather than for execution speed.
Refactored compilation flags that affect the Coq part (module Compopts). Added support for C99 for loops with declarations. git-svn-id: https://yquem.inria.fr/compcert/svn/compcert/trunk@2410 fca1b0fc-160b-0410-b1d3-a4f43f01ea2e
Diffstat (limited to 'driver/Interp.ml')
-rw-r--r--driver/Interp.ml1
1 files changed, 1 insertions, 0 deletions
diff --git a/driver/Interp.ml b/driver/Interp.ml
index 25d363cf..5975ae39 100644
--- a/driver/Interp.ml
+++ b/driver/Interp.ml
@@ -454,6 +454,7 @@ let diagnose_stuck_expr p ge w f a kont e m =
| RV, Ecomma(r1, r2, ty) -> diagnose RV r1
| RV, Eparen(r1, ty) -> diagnose RV r1
| RV, Ecall(r1, rargs, ty) -> diagnose RV r1 ||| diagnose_list rargs
+ | RV, Ebuiltin(ef, tyargs, rargs, ty) -> diagnose_list rargs
| _, _ -> false in
if found then true else begin
let l = Cexec.step_expr ge do_external_function do_inline_assembly e w k a m in