mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-14 02:33:53 +00:00
add test for mdef in a let
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30886 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
82e2eea168
commit
f187bab7bb
@ -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> {
|
class C1<int A, string B> {
|
||||||
int bar = A;
|
int bar = A;
|
||||||
string thestr = B;
|
string thestr = B;
|
||||||
|
int zing;
|
||||||
}
|
}
|
||||||
|
|
||||||
def T : C1<4, "blah">;
|
def T : C1<4, "blah">;
|
||||||
@ -17,3 +20,7 @@ multiclass t<int a> {
|
|||||||
defm FOO : t<42>;
|
defm FOO : t<42>;
|
||||||
|
|
||||||
def T4 : C1<6, "foo">;
|
def T4 : C1<6, "foo">;
|
||||||
|
|
||||||
|
let zing = 4 in
|
||||||
|
defm BAZ : t<3>;
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user