]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
* gcc.c-torture/execute/20030125-1.c: Remove.
authorEric Botcazou <ebotcazou@libertysurf.fr>
Mon, 27 Jan 2003 17:53:32 +0000 (18:53 +0100)
committerEric Botcazou <ebotcazou@gcc.gnu.org>
Mon, 27 Jan 2003 17:53:32 +0000 (17:53 +0000)
From-SVN: r61895

gcc/testsuite/ChangeLog
gcc/testsuite/gcc.c-torture/execute/20030125-1.c [deleted file]

index e9c1d44285d04675a48b0055adf47173b8af4c57..66bd8a1eb2f6443217ffafac6d702ba91eb850e4 100644 (file)
@@ -1,3 +1,7 @@
+2003-01-25  Eric Botcazou  <ebotcazou@libertysurf.fr>
+
+       * gcc.c-torture/execute/20030125-1.c: Remove.
+
 2003-01-25  Eric Botcazou  <ebotcazou@libertysurf.fr>
             Christian Ehrhardt  <ehrhardt@mathematik.uni-ulm.de>
 
diff --git a/gcc/testsuite/gcc.c-torture/execute/20030125-1.c b/gcc/testsuite/gcc.c-torture/execute/20030125-1.c
deleted file mode 100644 (file)
index 224d4ef..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
-/* PR optimization/9279 */
-/* Verify that the combiner zero-extends
-   variables correctly.   */
-
-extern void abort (void);
-
-int x = 0;
-char c, a = -1;
-char *p = &c;
-
-int main (void)
-{
-  if ((x ? 0 : (unsigned char)(*p = a)) == -1)
-    abort();
-
-  return 0;
-}