aboutsummaryrefslogtreecommitdiffstats
path: root/test/cminor/mainmanyargs.c
diff options
context:
space:
mode:
authorXavier Leroy <xavier.leroy@inria.fr>2017-02-15 09:58:44 +0100
committerXavier Leroy <xavier.leroy@inria.fr>2017-02-15 09:58:44 +0100
commit4ac453011fb3ee241c6f3023f79c942d99f72eb5 (patch)
tree00b4ef5e0be846f62e49c9af68a06a01fc9ae065 /test/cminor/mainmanyargs.c
parent29653baeb2c7fa6bfe5da031622d8fb8ac1e50c3 (diff)
downloadcompcert-4ac453011fb3ee241c6f3023f79c942d99f72eb5.tar.gz
compcert-4ac453011fb3ee241c6f3023f79c942d99f72eb5.zip
Remove tests involving Cminor concrete syntax. Update Changelog
Follow-up to [29653ba]
Diffstat (limited to 'test/cminor/mainmanyargs.c')
-rw-r--r--test/cminor/mainmanyargs.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/test/cminor/mainmanyargs.c b/test/cminor/mainmanyargs.c
deleted file mode 100644
index 36bcf762..00000000
--- a/test/cminor/mainmanyargs.c
+++ /dev/null
@@ -1,13 +0,0 @@
-#include <stdio.h>
-
-void print_int(int n) { printf("%d\n", n); }
-void print_float(double n) { printf("%g\n", n); }
-
-extern void g(int,int,int,int,int,
- double,double,double,double,double);
-
-int main()
-{
- g(1,2,3,4,5, 0.1,0.2,0.3,0.4,0.5);
- return 0;
-}