diff options
| author | Nuno Lopes <nunoplopes@sapo.pt> | 2009-01-28 00:35:17 +0000 |
|---|---|---|
| committer | Nuno Lopes <nunoplopes@sapo.pt> | 2009-01-28 00:35:17 +0000 |
| commit | bb537dc189c33fedebaddc7ad1ab474136390427 (patch) | |
| tree | 2722f7796c8ce1f87e0da7762330c27ed6efae13 /clang/test | |
| parent | 5c04bd81edc00cb201d04e80ae45be50c4cf83db (diff) | |
| download | bcm5719-llvm-bb537dc189c33fedebaddc7ad1ab474136390427.tar.gz bcm5719-llvm-bb537dc189c33fedebaddc7ad1ab474136390427.zip | |
fix PR3427: fix debuginfo for incomplete array types
llvm-svn: 63158
Diffstat (limited to 'clang/test')
| -rw-r--r-- | clang/test/CodeGen/debug-info.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/clang/test/CodeGen/debug-info.c b/clang/test/CodeGen/debug-info.c index f5a31631fba..2ecae9fa6d5 100644 --- a/clang/test/CodeGen/debug-info.c +++ b/clang/test/CodeGen/debug-info.c @@ -18,7 +18,13 @@ struct s0 { struct s0 *p; } g0; struct s0 *f0(struct s0 *a0) { return a0->p; } - + // PR3134 char xpto[]; +// PR3427 +struct foo { + int a; + void *ptrs[]; +}; +struct foo bar; |

