# HG changeset patch
# User Mario de Sousa <msousa@fe.up.pt>
# Date 1340128543 -3600
# Node ID 456add88d64cbc0c9bf31d996511fbc89f90ea6a
# Parent  683ae5444237017a9e5deaa1812ad91f66cfe2da
fix typo.

diff -r 683ae5444237 -r 456add88d64c 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;
 }