diff options
Diffstat (limited to 'llvm/lib/TableGen/TGParser.cpp')
-rw-r--r-- | llvm/lib/TableGen/TGParser.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/lib/TableGen/TGParser.cpp b/llvm/lib/TableGen/TGParser.cpp index 6ccca4d..3709a37 100644 --- a/llvm/lib/TableGen/TGParser.cpp +++ b/llvm/lib/TableGen/TGParser.cpp @@ -3203,7 +3203,8 @@ bool TGParser::ParseIf(MultiClass *CurMultiClass) { // iteration variable being assigned. ListInit *EmptyList = ListInit::get({}, BitRecTy::get()); - ListInit *SingletonList = ListInit::get({BitInit::get(1)}, BitRecTy::get()); + ListInit *SingletonList = + ListInit::get({BitInit::get(true)}, BitRecTy::get()); RecTy *BitListTy = ListRecTy::get(BitRecTy::get()); // The foreach containing the then-clause selects SingletonList if |