CFLAGS = -isysroot $(UNIVERSAL_SDK) $(UNIVERSAL_ARCH) $(CFLAGS_BASE)
else
LDFLAGS = $(LDFLAGS_BASE)
- CFLAGS = $(CFLAGS_BASE)
+ CFLAGS = $(CFLAGS_BASE) -m32
endif
#CXXFLAGS = $(CFLAGS) -Wall -Wextra -DEXT_HASH_MAP -Wno-deprecated
// up the cache that the others use.
ASTNode BeevMgr::TransformFormula_TopLevel(const ASTNode& form)
{
- runTimes.start(RunTimes::TransformFormulaTopLevel);
+ runTimes.start(RunTimes::Transforming);
assert(TransformMap == NULL);
TransformMap = new ASTNodeMap(100);
delete TransformMap;
TransformMap = NULL;
- runTimes.stop(RunTimes::TransformFormulaTopLevel);
+ runTimes.stop(RunTimes::Transforming);
return result;
}
//Get the name of Boolean Var
var.PL_Print(outVar);
constant.PL_Print(outNum);
- std::string str(outVar.str());
+ std::string str(outVar.str());
str += "(";
str += outNum.str();
str += ")";
else
{
result = simpleForm;
- }
+ }
break;
}
default: