From 48b0c706a4ef7923d6cb3f4c04206ce53dee189c Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Fri, 6 Dec 2002 04:42:16 +0000 Subject: [PATCH] Fix bug llvm-svn: 4942 --- support/tools/TableGen/FileParser.y | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/support/tools/TableGen/FileParser.y b/support/tools/TableGen/FileParser.y index ff3ec40484c..76f07e465f8 100644 --- a/support/tools/TableGen/FileParser.y +++ b/support/tools/TableGen/FileParser.y @@ -92,8 +92,8 @@ static void setValue(const std::string &ValName, // Loop over bits, assigning values as appropriate... for (unsigned i = 0, e = BitList->size(); i != e; ++i) { unsigned Bit = (*BitList)[i]; - if (NewVal->getBit(i)) { - err() << "Cannot set bit #" << i << " of value '" << ValName + if (NewVal->getBit(Bit)) { + err() << "Cannot set bit #" << Bit << " of value '" << ValName << "' more than once!\n"; abort(); }