summaryrefslogtreecommitdiffstats
path: root/clang/test/CodeGenCXX/debug-info-union-template.cpp
blob: 6f644a9ec4c5bed68425a9da08ee93cd0b09937a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// RUN: %clang_cc1 -emit-llvm -g -triple x86_64-linux-gnu  %s -o - | FileCheck %s

// Make sure that the union type has template parameters.

namespace PR15637 {
  template <typename T> union Value { int a; };
  void g(float value) {
    Value<float> tempValue;
  }
  Value<float> f;
}

// CHECK: metadata !{metadata !"0x17\00Value<float>\00{{.*}}", {{.*}}, metadata [[TTPARAM:![0-9]+]], metadata !"_ZTSN7PR156375ValueIfEE"} ; [ DW_TAG_union_type ] [Value<float>]
// CHECK: [[TTPARAM]] = metadata !{metadata [[PARAMS:.*]]}
// CHECK: [[PARAMS]] = metadata !{metadata !"0x2f\00T\000\000", {{.*}} ; [ DW_TAG_template_type_parameter ]
OpenPOWER on IntegriCloud