diff options
author | David Blaikie <dblaikie@gmail.com> | 2016-08-24 18:29:58 +0000 |
---|---|---|
committer | David Blaikie <dblaikie@gmail.com> | 2016-08-24 18:29:58 +0000 |
commit | a45c31a5b40ded42ad2cccc20f927f4e1ce7c125 (patch) | |
tree | 7d488fe33104c7a6cee05b111ce8c01599c0a8ad /clang/test/CodeGen/debug-info-imported-entity.cpp | |
parent | a01f29532289f5fbebcc4f9bc5399fec0c715807 (diff) | |
download | bcm5719-llvm-a45c31a5b40ded42ad2cccc20f927f4e1ce7c125.tar.gz bcm5719-llvm-a45c31a5b40ded42ad2cccc20f927f4e1ce7c125.zip |
DebugInfo: Add flag to CU to disable emission of inline debug info into the skeleton CU
In cases where .dwo/.dwp files are guaranteed to be available, skipping
the extra online (in the .o file) inline info can save a substantial
amount of space - see the original r221306 for more details there.
llvm-svn: 279651
Diffstat (limited to 'clang/test/CodeGen/debug-info-imported-entity.cpp')
-rw-r--r-- | clang/test/CodeGen/debug-info-imported-entity.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/clang/test/CodeGen/debug-info-imported-entity.cpp b/clang/test/CodeGen/debug-info-imported-entity.cpp index 105cc3dc537..c7935eda48c 100644 --- a/clang/test/CodeGen/debug-info-imported-entity.cpp +++ b/clang/test/CodeGen/debug-info-imported-entity.cpp @@ -3,9 +3,7 @@ namespace std { class A; } using std::A; using ::A; - -// CHECK: [[CompileUnit:![0-9]+]] = distinct !DICompileUnit({{.+}} imports: [[Imports:![0-9]+]]) +// CHECK: [[CompileUnit:![0-9]+]] = distinct !DICompileUnit({{.+}} imports: [[Imports:![0-9]+]] // CHECK: [[Imports]] = !{[[ImportedEntity:![0-9]+]]} // CHECK: [[ImportedEntity]] = !DIImportedEntity(tag: DW_TAG_imported_declaration, scope: [[CompileUnit]], entity: [[STDA:![0-9]+]], line: 4) // CHECK: [[STDA]] = !DICompositeType(tag: DW_TAG_class_type, name: "A", - |