aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/unsorted/charmtst.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gcc.c-torture/unsorted/charmtst.c')
-rw-r--r--gcc/testsuite/gcc.c-torture/unsorted/charmtst.c15
1 files changed, 0 insertions, 15 deletions
diff --git a/gcc/testsuite/gcc.c-torture/unsorted/charmtst.c b/gcc/testsuite/gcc.c-torture/unsorted/charmtst.c
deleted file mode 100644
index 2945f198e5e..00000000000
--- a/gcc/testsuite/gcc.c-torture/unsorted/charmtst.c
+++ /dev/null
@@ -1,15 +0,0 @@
-c_move_tst (char b)
-{
- char a;
-
- a = b;
- b = 'b';
- foo (a);
- foo (b);
- foo (a);
- bar (a, b);
- b = a;
- if (b == 0)
- a++;
- return a + b;
-}