| // RUN: llvm-tblgen %s | FileCheck %s |
| multiclass M0<string s> { |
| def _m0 : B<!cast<A>(s)>; |
| // Uncomment to test that !cast will eventually fail if the record it refers |
| // to does not exist by the time we instantiate this record from the top |
| //def _m1 : B<!cast<A>(s#"X")>; |
| multiclass M1<string s> { |
| // It would be nice if we could refer to _r1's name without having to pass it |
| def _y : B<!cast<A>(NAME # "_x")>; |
| // This used to throw an error during multiclass parsing as NAME was not |
| // recognized when parsing the template arguments. |
| // CHECK-LABEL: def d0_m1_m0 |
| // CHECK-LABEL: def d0_x { |
| // CHECK: string n = "d0"; |
| // CHECK-LABEL: def d0_y { |
| // This always works, because d1_r1 is instantiated before d1_m1 which would |
| // attempt to !cast to it. |
| // CHECK-LABEL: def d1_m1_m0 |