brintos

brintos / llvm-project-archived public Read only

0
0
Text · 275 B · ed37e5c Raw
11 lines · plain
1// RUN: not llvm-tblgen %s 2>&1 | FileCheck %s2// XFAIL: vg_leak3 4// This test checks that using def instead of defm gives a meaningful error5multiclass M2 {6  def X;7}8 9// CHECK: error: Couldn't find class 'M2'. Use 'defm' if you meant to use multiclass 'M2'10def rec1 : M2;11