Revert "[llvm] Improve llvm.objectsize computation by computing GEP, alloca and mallo...
[llvm-project.git] / clang / test / CodeGen / debug-info-limited.c
blob7c20ca4dd625fd820f3e97263187349604d39472
1 // RUN: %clang -flimit-debug-info -emit-llvm -g -S %s -o - | FileCheck %s
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'.
6 // CHECK: !DICompositeType(tag: DW_TAG_structure_type, name: "foo",
7 // CHECK-NOT: DIFlagFwdDecl
8 // CHECK-SAME: ){{$}}
10 struct foo {
13 struct foo *f;