diff options
author | Chris Lattner <sabre@nondot.org> | 2006-10-11 18:12:14 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2006-10-11 18:12:14 +0000 |
commit | f187bab7bb3a11d6c0855670f0563d2f4d664dec (patch) | |
tree | f4c59f5710c22ed126a5441ab2e15a64070e05fb /test/TableGen/MultiClass.td | |
parent | 82e2eea16861455b8a1f98756248b0f0baa0121b (diff) |
add test for mdef in a let
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30886 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/TableGen/MultiClass.td')
-rw-r--r-- | test/TableGen/MultiClass.td | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/test/TableGen/MultiClass.td b/test/TableGen/MultiClass.td index 37eb2f52bc..2840e6742e 100644 --- a/test/TableGen/MultiClass.td +++ b/test/TableGen/MultiClass.td @@ -1,7 +1,10 @@ -// RUN: tblgen %s +// RUN: tblgen %s && +// RUN: tblgen %s | grep 'zing = 4' | wc -l | grep 2 + class C1<int A, string B> { int bar = A; string thestr = B; + int zing; } def T : C1<4, "blah">; @@ -17,3 +20,7 @@ multiclass t<int a> { defm FOO : t<42>; def T4 : C1<6, "foo">; + +let zing = 4 in + defm BAZ : t<3>; + |