summaryrefslogtreecommitdiff
path: root/gcc/testsuite/treelang/execute/funccall-2.tree
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/treelang/execute/funccall-2.tree')
-rw-r--r--gcc/testsuite/treelang/execute/funccall-2.tree28
1 files changed, 0 insertions, 28 deletions
diff --git a/gcc/testsuite/treelang/execute/funccall-2.tree b/gcc/testsuite/treelang/execute/funccall-2.tree
deleted file mode 100644
index 43911c9f4f8..00000000000
--- a/gcc/testsuite/treelang/execute/funccall-2.tree
+++ /dev/null
@@ -1,28 +0,0 @@
-// { dg-do run }
-external_definition int main (int argc);
-
-static int foo (int bba);
-
-foo
-{
- automatic int bar;
-
- bar = bba + +1;
- return bar;
-}
-
-main
-{
- automatic int aaa = +3;
-
- aaa = foo (argc);
-
- if (aaa == +2)
- {
- return +0;
- }
- else
- {
- return +1;
- }
-}