aboutsummaryrefslogtreecommitdiffstats
path: root/test/mppa/lib/printf-test.c
diff options
context:
space:
mode:
authorDavid Monniaux <david.monniaux@univ-grenoble-alpes.fr>2020-05-26 22:11:32 +0200
committerDavid Monniaux <david.monniaux@univ-grenoble-alpes.fr>2020-05-26 22:11:32 +0200
commitbc1e43ea95b9455cdccee442db77bc5fafd3dcc6 (patch)
tree4e82b5f50870603f42ec46d57e543c3e10fb1f4f /test/mppa/lib/printf-test.c
parentb4a08d0815342b6238d307864f0823d0f07bb691 (diff)
downloadcompcert-kvx-bc1e43ea95b9455cdccee442db77bc5fafd3dcc6.tar.gz
compcert-kvx-bc1e43ea95b9455cdccee442db77bc5fafd3dcc6.zip
tests for kvx
Diffstat (limited to 'test/mppa/lib/printf-test.c')
-rw-r--r--test/mppa/lib/printf-test.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/test/mppa/lib/printf-test.c b/test/mppa/lib/printf-test.c
deleted file mode 100644
index 25afd436..00000000
--- a/test/mppa/lib/printf-test.c
+++ /dev/null
@@ -1,9 +0,0 @@
-int printf(const char *, ...);
-
-int main(void){
- int a = 42;
- char *str = "Hi there";
- printf("%s, I am %u\n", str, a);
-
- return 0;
-}