brintos

brintos / llvm-project-archived public Read only

0
0
Text · 566 B · 14f8db8 Raw
24 lines · plain
1// RUN: not mlir-pdll %s -split-input-file 2>&1  | FileCheck %s2 3// CHECK: unknown directive `#foo`4#foo5 6// -----7 8//===----------------------------------------------------------------------===//9// Include10//===----------------------------------------------------------------------===//11 12// CHECK: expected string file name after `include` directive13#include <>14 15// -----16 17// CHECK: unable to open include file `unknown_file.pdll`18#include "unknown_file.pdll"19 20// -----21 22// CHECK: expected include filename to end with `.pdll` or `.td`23#include "unknown_file.foo"24