forked from OSchip/llvm-project
parent
3e6e191e39
commit
3ef3fdf837
|
@ -92,8 +92,8 @@ static void setValue(const std::string &ValName,
|
||||||
// Loop over bits, assigning values as appropriate...
|
// Loop over bits, assigning values as appropriate...
|
||||||
for (unsigned i = 0, e = BitList->size(); i != e; ++i) {
|
for (unsigned i = 0, e = BitList->size(); i != e; ++i) {
|
||||||
unsigned Bit = (*BitList)[i];
|
unsigned Bit = (*BitList)[i];
|
||||||
if (NewVal->getBit(i)) {
|
if (NewVal->getBit(Bit)) {
|
||||||
err() << "Cannot set bit #" << i << " of value '" << ValName
|
err() << "Cannot set bit #" << Bit << " of value '" << ValName
|
||||||
<< "' more than once!\n";
|
<< "' more than once!\n";
|
||||||
abort();
|
abort();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue