aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Hubicka <hubicka@gcc.gnu.org>2018-12-24 11:23:57 +0000
committerJan Hubicka <hubicka@gcc.gnu.org>2018-12-24 11:23:57 +0000
commit3d7bef8def04568aa63743b7edd46a85af11152a (patch)
treeb367500c9f9fbed75629a144a7936136b2c83f57
parent77e9f49535e298fb326cf0ebc208636d1dcf3f37 (diff)
downloadgcc-3d7bef8def04568aa63743b7edd46a85af11152a.zip
gcc-3d7bef8def04568aa63743b7edd46a85af11152a.tar.gz
gcc-3d7bef8def04568aa63743b7edd46a85af11152a.tar.bz2
Fix double-application of patch.
From-SVN: r267399
-rw-r--r--gcc/testsuite/gcc.c-torture/pr88140.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/gcc/testsuite/gcc.c-torture/pr88140.c b/gcc/testsuite/gcc.c-torture/pr88140.c
index a08c2cb..1a2bd32 100644
--- a/gcc/testsuite/gcc.c-torture/pr88140.c
+++ b/gcc/testsuite/gcc.c-torture/pr88140.c
@@ -6,14 +6,3 @@ typedef struct {
} c;
void d() { ((c *)0)->b[0] = 0; }
-
-typedef struct {
-} a;
-
-typedef struct {
- a *b[0];
-} c;
-
-void d() { ((c *)0)->b[0] = 0; }
-
-