David Blaikie | 79af384 | 2013-08-01 20:57:40 +0000 | [diff] [blame] | 1 | // RUN: %clang -flimit-debug-info -emit-llvm -g -S %s -o - | FileCheck %s |
| 2 | |
| 3 | // Ensure we emit the full definition of 'foo' even though only its declaration |
| 4 | // is needed, since C has no ODR to ensure that the definition will be the same |
| 5 | // in whatever TU actually uses/requires the definition of 'foo'. |
Duncan P. N. Exon Smith | 9dd4e4e | 2015-04-29 16:40:08 +0000 | [diff] [blame] | 6 | // CHECK: !DICompositeType(tag: DW_TAG_structure_type, name: "foo", |
Duncan P. N. Exon Smith | f04be1f | 2015-03-03 17:25:55 +0000 | [diff] [blame] | 7 | // CHECK-NOT: DIFlagFwdDecl |
| 8 | // CHECK-SAME: ){{$}} |
David Blaikie | 79af384 | 2013-08-01 20:57:40 +0000 | [diff] [blame] | 9 | |
| 10 | struct foo { |
| 11 | }; |
| 12 | |
| 13 | struct foo *f; |