Precedence fix

This commit is contained in:
Robin Jadoul 2017-01-22 15:37:47 +01:00
parent c9da57dec2
commit fb4e394b36
1 changed files with 1 additions and 1 deletions

View File

@ -140,7 +140,7 @@ LRTable Generator<Itemset>::generate() {
if (leftPrec.first > rightTokenIt->second.first) {
// Keep the shift
handled = true;
} else if (leftPrec.first > rightTokenIt->second.first) {
} else if (leftPrec.first < rightTokenIt->second.first) {
// replace with a reduce
table.act[curIdx][term] = {Action::REDUCE, rule_applied};
handled = true;