[NFC][RemoveDIs] Prefer iterators over inst-pointers in InstCombine
[llvm-project.git] / llvm / test / TableGen / range-op-fail.td
blob3238d60abe7f89cd97ef4643709e81c0c0f8ef74
1 // Each RUN line is scattered.
3 defvar list_int = !range(4);
5 #ifdef ERR_LIST_INT
6 // RUN: not llvm-tblgen %s -DERR_LIST_INT 2>&1 | FileCheck -DFILE=%s %s --check-prefix=ERR_LIST_INT
7 // ERR_LIST_INT: [[FILE]]:[[@LINE+1]]:32: error: expected one list, got extra value of type 'int'
8 defvar errs = !range(list_int, 42);
9 #endif
11 #ifdef ERR_INT_LIST
12 // RUN: not llvm-tblgen %s -DERR_INT_LIST 2>&1 | FileCheck -DFILE=%s %s --check-prefix=ERR_INT_LIST
13 // ERR_INT_LIST: [[FILE]]:[[@LINE+1]]:25: error: expected value of type 'int', got 'list<int>'
14 defvar errs = !range(0, list_int);
15 #endif
17 #ifdef ERR_TOO_MANY_ARGS
18 // RUN: not llvm-tblgen %s -DERR_TOO_MANY_ARGS 2>&1 | FileCheck -DFILE=%s %s --check-prefix=ERR_TOO_MANY_ARGS
19 // ERR_TOO_MANY_ARGS: [[FILE]]:[[@LINE+1]]:15: error: expected at most two values of integer
20 defvar errs = !range(0, 42, 255);
21 #endif
23 #ifdef ERR_UNEXPECTED_TYPE_0
24 // RUN: not llvm-tblgen %s -DERR_UNEXPECTED_TYPE_0 2>&1 | FileCheck -DFILE=%s %s --check-prefix=ERR_UNEXPECTED_TYPE_0
25 // ERR_UNEXPECTED_TYPE_0: [[FILE]]:[[@LINE+1]]:22: error: expected list or int, got value of type 'string'
26 defvar errs = !range("hoge");
27 #endif
29 #ifdef ERR_UNEXPECTED_TYPE_1
30 // RUN: not llvm-tblgen %s -DERR_UNEXPECTED_TYPE_1 2>&1 | FileCheck -DFILE=%s %s --check-prefix=ERR_UNEXPECTED_TYPE_1
31 // ERR_UNEXPECTED_TYPE_1: [[FILE]]:[[@LINE+1]]:22: error: expected list or int, got value of type 'string'
32 defvar errs = !range("hoge", 42);
33 #endif
35 #ifdef ERR_UNEXPECTED_TYPE_2
36 // RUN: not llvm-tblgen %s -DERR_UNEXPECTED_TYPE_2 2>&1 | FileCheck -DFILE=%s %s --check-prefix=ERR_UNEXPECTED_TYPE_2
37 // ERR_UNEXPECTED_TYPE_2: [[FILE]]:[[@LINE+1]]:25: error: expected value of type 'int', got 'string'
38 defvar errs = !range(6, "fuga");
39 #endif
41 #ifdef ERR_EMPTY_ARG
42 // RUN: not llvm-tblgen %s -DERR_EMPTY_ARG 2>&1 | FileCheck -DFILE=%s %s --check-prefix=ERR_EMPTY_ARG
43 // ERR_EMPTY_ARG: [[FILE]]:[[@LINE+1]]:22: error: Unknown or reserved token when parsing a value
44 defvar errs = !range();
45 #endif