aboutsummaryrefslogtreecommitdiffstats
path: root/c_compiler/test/in/ComplexAssignment.c
diff options
context:
space:
mode:
authorYann Herklotz <ymherklotz@gmail.com>2017-03-10 22:11:04 +0000
committerYann Herklotz <ymherklotz@gmail.com>2017-03-10 22:11:04 +0000
commit27134d31ce42631fca12295f4064d55de8dfdee8 (patch)
tree1610ad24f7f83e85b4349f214b1d754aa1b93ab6 /c_compiler/test/in/ComplexAssignment.c
parenta6addb3eb3b5378dc17d9ea7bf066962517fbfbe (diff)
downloadCompiler-27134d31ce42631fca12295f4064d55de8dfdee8.tar.gz
Compiler-27134d31ce42631fca12295f4064d55de8dfdee8.zip
moved test cases
Diffstat (limited to 'c_compiler/test/in/ComplexAssignment.c')
-rw-r--r--c_compiler/test/in/ComplexAssignment.c20
1 files changed, 0 insertions, 20 deletions
diff --git a/c_compiler/test/in/ComplexAssignment.c b/c_compiler/test/in/ComplexAssignment.c
deleted file mode 100644
index 394cedb..0000000
--- a/c_compiler/test/in/ComplexAssignment.c
+++ /dev/null
@@ -1,20 +0,0 @@
-int main()
-{
- int a = 5;
- int b = 49;
- int c = 239;
- int d = 23;
- int f = 234;
- int g = 12;
-
- a = d;
- b = f;
- g = f;
- a = g;
- d = g;
- a = d;
- g = c;
- c = a;
- a = f;
- return a;
-}