From: Amjad Aboud Date: Sun, 13 Mar 2016 11:12:57 +0000 (+0000) Subject: Added test that covers changes in r263379. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=309b96c687b008fd6c9c4824bfd9f35c5e777bec;p=clang Added test that covers changes in r263379. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@263380 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/CodeGen/debug-info-imported-entity.cpp b/test/CodeGen/debug-info-imported-entity.cpp new file mode 100644 index 0000000000..a9a0408ac4 --- /dev/null +++ b/test/CodeGen/debug-info-imported-entity.cpp @@ -0,0 +1,10 @@ +// RUN: %clang_cc1 -triple x86_64-unk-unk -o - -emit-llvm -debug-info-kind=limited %s | FileCheck %s + +namespace std { class A; } +using std::A; using ::A; + + +// 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: !"_ZTSSt1A", line: 4) +