Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / CodeGenCXX / debug-info-template-deduction-guide.cpp
blob036deb046220d88c183fbeea35412b2fd48ac42f
1 // RUN: %clang -S -emit-llvm -target x86_64-unknown_unknown -g %s -o - -std=c++1z | FileCheck %s
3 // Verify that we don't crash when emitting debug information for objects
4 // created from a deduced template specialization.
6 template <class T>
7 struct S {
8 S(T) {}
9 };
11 // CHECK-DAG: !DIGlobalVariable(name: "s1"{{.*}} type: [[TYPE_NUM:![0-9]+]]
12 // CHECK-DAG: !DIGlobalVariable(name: "s2"{{.*}} type: [[TYPE_NUM]]
13 // CHECK-DAG: [[TYPE_NUM]] = distinct !DICompositeType(tag: DW_TAG_structure_type, name: "S<int>",
14 S s1(42);
15 S<int> s2(42);