blob: f5e6e14a71d1ad5d9f9b361ac14ede57a74a5aca [file] [log] [blame]
Eric Christopherf068c922013-04-02 22:59:11 +00001// RUN: %clang_cc1 -emit-llvm -g -triple x86_64-linux-gnu %s -o - | FileCheck %s
2
3// Make sure that the union type has template parameters.
4
5namespace PR15637 {
6 template <typename T> union Value { int a; };
7 void g(float value) {
8 Value<float> tempValue;
9 }
10 Value<float> f;
11}
12
13// CHECK: {{.*}}, metadata !"Value<float>", {{.*}}, null, metadata [[TTPARAM:.*]]} ; [ DW_TAG_union_type ] [Value<float>]
14// CHECK: [[TTPARAM]] = metadata !{metadata [[PARAMS:.*]]}
15// CHECK: [[PARAMS]] = metadata !{{{.*}}metadata !"T",{{.*}}} ; [ DW_TAG_template_type_parameter ]