repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Dead
[official-gcc.git]
/
gomp-20050608-branch
/
gcc
/
testsuite
/
g++.dg
/
opt
/
array1.C
blob
c63ed22c88b8afc26aa05dd1ffaaf988063b1ffe
1
// Copyright (C) 2004 Free Software Foundation, Inc.
2
// Contributed by Nathan Sidwell 29 Nov 2004 <nathan@codesourcery.com>
3
4
// PR 18672:ICE gimplifying incomplete array type.
5
// Origin: Magnus Fromreide <gcc@magfr.user.lysator.liu.se>
6
7
struct A;
8
9
struct D {
10
static A ary[];
11
};
12
extern A ary[];
13
14
void Foo (A const *);
15
16
void Bar ()
17
{
18
Foo (D::ary);
19
Foo (::ary);
20
}