From a45c31a5b40ded42ad2cccc20f927f4e1ce7c125 Mon Sep 17 00:00:00 2001 From: David Blaikie Date: Wed, 24 Aug 2016 18:29:58 +0000 Subject: 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 --- clang/test/CodeGen/debug-info-imported-entity.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'clang/test/CodeGen/debug-info-imported-entity.cpp') 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", - -- cgit v1.2.3