aboutsummaryrefslogtreecommitdiffstats
path: root/test/monniaux/send_through/send_through.h
diff options
context:
space:
mode:
authorDavid Monniaux <david.monniaux@univ-grenoble-alpes.fr>2019-02-06 19:19:56 +0100
committerDavid Monniaux <david.monniaux@univ-grenoble-alpes.fr>2019-02-06 19:19:56 +0100
commit1ac763ea169bc7821190954396a723fec04b14d9 (patch)
treef7d38def81e483ddae53ff3935386d82dfec56ca /test/monniaux/send_through/send_through.h
parenta7ea84945b85403dda46498415d27e51ba33d309 (diff)
downloadcompcert-kvx-1ac763ea169bc7821190954396a723fec04b14d9.tar.gz
compcert-kvx-1ac763ea169bc7821190954396a723fec04b14d9.zip
float aussi
Diffstat (limited to 'test/monniaux/send_through/send_through.h')
-rw-r--r--test/monniaux/send_through/send_through.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/test/monniaux/send_through/send_through.h b/test/monniaux/send_through/send_through.h
index 54b6c052..03714fec 100644
--- a/test/monniaux/send_through/send_through.h
+++ b/test/monniaux/send_through/send_through.h
@@ -1,4 +1,6 @@
typedef double op_int_double(int, double);
+typedef float op_int_float(int, float);
-double send_through(op_int_double f, int x, int y, double z);
+double send_through_double(op_int_double f, int x, int y, double z);
+float send_through_float(op_int_float f, int x, int y, float z);
void print_from_ccomp(double x);