mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-02-13 22:00:14 +00:00
![Matt Arsenault](/assets/img/avatar_default.png)
This allows using anything that isn't a literal integer as the bounds for a foreach. Some of the diagnostics aren't perfect, but nobody ever accused tablegen of having good errors. For example, the existing wording suggests a bitrange is valid, but as far as I can tell this has never worked. Fixes bug 41958. llvm-svn: 361434
9 lines
232 B
TableGen
9 lines
232 B
TableGen
// RUN: not llvm-tblgen %s 2>&1 | FileCheck -DFILE=%s %s
|
|
|
|
// CHECK: [[FILE]]:[[@LINE+2]]:21: error: expected integer or bitrange
|
|
// CHECK: [[FILE]]:[[@LINE+1]]:21: error: expected declaration in for
|
|
foreach Index = "0" - 1 in {
|
|
|
|
}
|
|
|