1
0
mirror of https://github.com/c64scene-ar/llvm-6502.git synced 2025-01-27 14:34:58 +00:00
2011-10-06 13:39:59 +00:00

17 lines
367 B
TableGen

// RUN: llvm-tblgen %s | FileCheck %s
// XFAIL: vg_leak
// CHECK: No subst
// CHECK: No foo
// CHECK: RECURSE foo
class Recurse<string t> {
string Text = t;
}
class Text<string text> :
Recurse<!subst("RECURSE", "RECURSE", !subst("NORECURSE", "foo", text))>;
def Ok1 : Text<"No subst">;
def Ok2 : Text<"No NORECURSE">;
def Trouble : Text<"RECURSE NORECURSE">;