aboutsummaryrefslogtreecommitdiffstats
path: root/testing
diff options
context:
space:
mode:
authorYann Herklotz <ymherklotz@gmail.com>2018-03-10 21:37:11 +0000
committerYann Herklotz <ymherklotz@gmail.com>2018-03-10 21:37:11 +0000
commit2e124e11be8b88458f4fe8b8eb1ec0ff66a34eb7 (patch)
tree07e423b897ec6914dd27496528b21b93dcd883a3 /testing
parente3f93f203a1b47a31fef21219955335476857d90 (diff)
downloadCompiler-2e124e11be8b88458f4fe8b8eb1ec0ff66a34eb7.tar.gz
Compiler-2e124e11be8b88458f4fe8b8eb1ec0ff66a34eb7.zip
Improving documentation
Diffstat (limited to 'testing')
-rw-r--r--testing/ref_compiler.sh3
-rw-r--r--testing/testcases/test_ADD.c4
-rw-r--r--testing/testcases/test_ADD_driver.c8
3 files changed, 0 insertions, 15 deletions
diff --git a/testing/ref_compiler.sh b/testing/ref_compiler.sh
deleted file mode 100644
index b5425b0..0000000
--- a/testing/ref_compiler.sh
+++ /dev/null
@@ -1,3 +0,0 @@
-#!/bin/bash
-
-mips-linux-gnu-gcc -c -S -x c - -o -
diff --git a/testing/testcases/test_ADD.c b/testing/testcases/test_ADD.c
deleted file mode 100644
index 327dc85..0000000
--- a/testing/testcases/test_ADD.c
+++ /dev/null
@@ -1,4 +0,0 @@
-int f(int a, int b)
-{
- return 1;
-}
diff --git a/testing/testcases/test_ADD_driver.c b/testing/testcases/test_ADD_driver.c
deleted file mode 100644
index 9e74f32..0000000
--- a/testing/testcases/test_ADD_driver.c
+++ /dev/null
@@ -1,8 +0,0 @@
-int f(int a, int b);
-
-int main()
-{
- int r=f(10,11);
-
- return r == 21;
-}