Home | History | Annotate | Download | only in TableGen
      1 // RUN: llvm-tblgen -gen-ctags %s | FileCheck %s
      2 // XFAIL: vg_leak
      3 
      4 // Ensure that generated names for anonymous records are valid identifiers via the ctags index.
      5 
      6 class foo<int X> { int THEVAL = X; }
      7 // CHECK: {{^X }}
      8 
      9 def : foo<2>;
     10 // CHECK: {{^anonymous_0 }}
     11 
     12 def X {
     13   foo Y = foo<1>;
     14 }
     15 // CHECK: {{^anonymous_1 }}
     16 // CHECK: {{^foo }}
     17