blob: cf5d1ca85bc28800285c1a901fee713cf5cf5433 [file] [log] [blame]
Nicolai Haehnle19ebaa72018-03-06 13:48:47 +00001// RUN: not llvm-tblgen %s 2>&1 | FileCheck %s
Nicolai Haehnlea9e8c1d2018-03-06 13:48:39 +00002
3// Check that a large integer is not truncated to a small bit sequence.
4//
Nicolai Haehnle19ebaa72018-03-06 13:48:47 +00005// CHECK: error: Initializer of 'X' in 'anonymous_0' could not be fully resolved:
Chris Lattnera6aff652003-08-03 18:28:09 +00006
7def {
8 bits<2> X = 5; // bitfield is too small, reject
9}