Make older versions of bison happy.

llvm-svn: 35099
This commit is contained in:
Jeff Cohen 2007-03-14 15:27:17 +00:00
parent 137a16ea95
commit eb9dccf63d
1 changed files with 1 additions and 1 deletions

View File

@ -3186,7 +3186,7 @@ InstVal
$$.I = BinaryOperator::create(Instruction::Xor, $2.V, Ones); $$.I = BinaryOperator::create(Instruction::Xor, $2.V, Ones);
if ($$.I == 0) if ($$.I == 0)
error("Could not create a xor instruction"); error("Could not create a xor instruction");
$$.S = $2.S $$.S = $2.S;
} }
| ShiftOps ResolvedVal ',' ResolvedVal { | ShiftOps ResolvedVal ',' ResolvedVal {
if (!$4.V->getType()->isInteger() || if (!$4.V->getType()->isInteger() ||