File tree Expand file tree Collapse file tree 3 files changed +2
-14
lines changed
Expand file tree Collapse file tree 3 files changed +2
-14
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ CFLAGS=-I$(INCLUDE)
44CC=gcc
55
66proof/math_extern.v: $(SRC)/math_extern.c
7- clightgen -flongdouble -normalize -DCOMPCERT $< -o $@
7+ clightgen -flongdouble -normalize $< -o $@
88
99proof/malloc_extern.v: $(SRC)/malloc_extern.c
1010 clightgen -normalize $< -o $@
@@ -23,7 +23,7 @@ test/incr.v: test/incr.c
2323test/incr_main.v: test/incr_main.c
2424 clightgen -I$(INCLUDE) -normalize $<
2525test/testmath.v: test/testmath.c
26- clightgen -I$(INCLUDE) -normalize -DCOMPCERT $<
26+ clightgen -I$(INCLUDE) -normalize $<
2727
2828tests: test/incr
2929
Original file line number Diff line number Diff line change 1- #ifdef COMPCERT
2- /* still Starting with CompCert 3.15 (and VST 2.15), don't need this hack
3- any more, but still here for VSTlib compatibility with older versions
4- of CompCert/VST */
5- typedef float _Float16 ; /* _Float16 is a MacOS thing that CompCert doesn't support */
6- #endif
71#include <math.h>
82
93/* Note regard 'long double':
Original file line number Diff line number Diff line change 1- #ifdef COMPCERT
2- /* still Starting with CompCert 3.15 (and VST 2.15), don't need this hack
3- any more, but still here for VSTlib compatibility with older versions
4- of CompCert/VST */
5- typedef float _Float16 ; /* _Float16 is a MacOS thing that CompCert doesn't support */
6- #endif
71#include <math.h>
82
93double f (double t ) {
You can’t perform that action at this time.
0 commit comments