diff options
author | Adrian Prantl <aprantl@apple.com> | 2015-09-10 17:13:31 +0000 |
---|---|---|
committer | Adrian Prantl <aprantl@apple.com> | 2015-09-10 17:13:31 +0000 |
commit | 54a3457fe1e2e50dedd5c576bb8bc2012e83e8e8 (patch) | |
tree | 3fce75f62dabce8a84e2a4681274180020b8fc94 /clang/test/Modules/ModuleDebugInfo.cpp | |
parent | 7eb5464bc551dc7c3c1b3fe2ee618f6efd588b6f (diff) | |
download | bcm5719-llvm-54a3457fe1e2e50dedd5c576bb8bc2012e83e8e8.tar.gz bcm5719-llvm-54a3457fe1e2e50dedd5c576bb8bc2012e83e8e8.zip |
Debug Info: Remove an unnecessary debug type visitor.
Thanks to dblaikie for spotting this.
llvm-svn: 247303
Diffstat (limited to 'clang/test/Modules/ModuleDebugInfo.cpp')
-rw-r--r-- | clang/test/Modules/ModuleDebugInfo.cpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/clang/test/Modules/ModuleDebugInfo.cpp b/clang/test/Modules/ModuleDebugInfo.cpp index 575fecca729..a23c2459a90 100644 --- a/clang/test/Modules/ModuleDebugInfo.cpp +++ b/clang/test/Modules/ModuleDebugInfo.cpp @@ -7,10 +7,12 @@ // RUN: rm -rf %t // RUN: %clang_cc1 -triple %itanium_abi_triple -x objective-c++ -std=c++11 -g -fmodules -fmodule-format=obj -fimplicit-module-maps -DMODULES -fmodules-cache-path=%t %s -I %S/Inputs -I %t -emit-llvm -o %t.ll -mllvm -debug-only=pchcontainer &>%t-mod.ll // RUN: cat %t-mod.ll | FileCheck %s +// RUN: cat %t-mod.ll | FileCheck --check-prefix=CHECK-NEG %s // PCH: // RUN: %clang_cc1 -triple %itanium_abi_triple -x c++ -std=c++11 -emit-pch -fmodule-format=obj -I %S/Inputs -o %t.pch %S/Inputs/DebugCXX.h -mllvm -debug-only=pchcontainer &>%t-pch.ll // RUN: cat %t-pch.ll | FileCheck %s +// RUN: cat %t-mod.ll | FileCheck --check-prefix=CHECK-NEG %s #ifdef MODULES @import DebugCXX; @@ -30,12 +32,11 @@ // CHECK: !DICompositeType(tag: DW_TAG_class_type, // CHECK-SAME: name: "Template<float, DebugCXX::traits<float> >" // CHECK-SAME: identifier: "_ZTSN8DebugCXX8TemplateIfNS_6traitsIfEEEE") -// CHECK: !DICompositeType(tag: DW_TAG_class_type, -// CHECK-SAME: name: "Template<long, DebugCXX::traits<long> >" -// CHECK-SAME: identifier: "_ZTSN8DebugCXX8TemplateIlNS_6traitsIlEEEE") // CHECK: !DICompositeType(tag: DW_TAG_class_type, name: "A<void>" // CHECK-SAME: identifier: "_ZTSN8DebugCXX1AIJvEEE") // CHECK: !DIDerivedType(tag: DW_TAG_typedef, name: "FloatInstatiation" // no mangled name here yet. // CHECK: !DIDerivedType(tag: DW_TAG_typedef, name: "B", // no mangled name here yet. + +// CHECK-NEG-NOT: "_ZTSN8DebugCXX8TemplateIlNS_6traitsIlEEEE" |