Eric Christopher | 5c7ee8b | 2013-04-02 22:59:11 +0000 | [diff] [blame] | 1 | // 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 | |
| 5 | namespace 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 | |
Duncan P. N. Exon Smith | b3a6669 | 2014-12-15 19:10:08 +0000 | [diff] [blame] | 13 | // CHECK: !"0x17\00Value<float>\00{{.*}}", {{.*}}, [[TTPARAM:![0-9]+]], !"_ZTSN7PR156375ValueIfEE"} ; [ DW_TAG_union_type ] [Value<float>] |
| 14 | // CHECK: [[TTPARAM]] = !{[[PARAMS:.*]]} |
| 15 | // CHECK: [[PARAMS]] = !{!"0x2f\00T\000\000", {{.*}} ; [ DW_TAG_template_type_parameter ] |