aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/unsorted/xcsebug.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gcc.c-torture/unsorted/xcsebug.c')
-rw-r--r--gcc/testsuite/gcc.c-torture/unsorted/xcsebug.c14
1 files changed, 0 insertions, 14 deletions
diff --git a/gcc/testsuite/gcc.c-torture/unsorted/xcsebug.c b/gcc/testsuite/gcc.c-torture/unsorted/xcsebug.c
deleted file mode 100644
index 614a6e80ebf..00000000000
--- a/gcc/testsuite/gcc.c-torture/unsorted/xcsebug.c
+++ /dev/null
@@ -1,14 +0,0 @@
-int g1;
-int g2;
-
-foo ()
-{
- int i = 1;
- int x;
-
- x = g1;
- (*(&g1 + i - 1)) = x + 1;
- x = g1;
- (*(&g1 + i - 1)) = x + 1;
- g1++;
-}