fix typo.
authorMario de Sousa <msousa@fe.up.pt>
Tue, 19 Jun 2012 18:55:43 +0100
changeset 602 456add88d64c
parent 601 683ae5444237
child 603 a45a62dd6df9
fix typo.
stage3/constant_folding.cc
--- a/stage3/constant_folding.cc	Tue Jun 19 11:23:30 2012 +0100
+++ b/stage3/constant_folding.cc	Tue Jun 19 18:55:43 2012 +0100
@@ -719,7 +719,7 @@
 	symbol->l_exp->accept(*this);
 	symbol->r_exp->accept(*this);
 	DO_BINARY_OPER(  bool, ||, bool);
-	DO_BINARY_OPER(uint64, | , bool);
+	DO_BINARY_OPER(uint64, | , uint64);
 	return NULL;
 }