diff options
author | Jan Hubicka <hubicka@gcc.gnu.org> | 2018-12-24 11:23:57 +0000 |
---|---|---|
committer | Jan Hubicka <hubicka@gcc.gnu.org> | 2018-12-24 11:23:57 +0000 |
commit | 3d7bef8def04568aa63743b7edd46a85af11152a (patch) | |
tree | b367500c9f9fbed75629a144a7936136b2c83f57 /gcc | |
parent | 77e9f49535e298fb326cf0ebc208636d1dcf3f37 (diff) | |
download | gcc-3d7bef8def04568aa63743b7edd46a85af11152a.zip gcc-3d7bef8def04568aa63743b7edd46a85af11152a.tar.gz gcc-3d7bef8def04568aa63743b7edd46a85af11152a.tar.bz2 |
Fix double-application of patch.
From-SVN: r267399
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/testsuite/gcc.c-torture/pr88140.c | 11 |
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; } - - |