if (!r1)
return NULL;
- bool cond;
+ bool cond = true;
if( r1->getclass() == INT_EXPR ){
if( e->getop() == IFNEG )
cond = mpz_sgn( ((IntExpr *)r1)->n )<0;
vector<Expr *> args;
Expr *hd = scrut->collect_args(args);
Expr **cases = &e->kids[1];
- CExpr *c;
+ // CExpr *c;
Expr *c_or_default;
while ((c_or_default = *cases++)) {
index = atoi( v.c_str() );
}
return index;
-}
\ No newline at end of file
+}
s << " ";\r
for( int a=0; a<(int)args.size(); a++ ){\r
print_smt2( args[a], s, newMode );\r
- if( a!=args.size()-1 )\r
+ if( a!=(int)args.size()-1 )\r
s << " ";\r
}\r
s << ")";\r
e3 = e_neg;
e3->inc();
if( e1==e2 ){
- Expr* x = ((CExpr*)l->followDefs())->kids[1];
+ // Expr* x = ((CExpr*)l->followDefs())->kids[1];
e0 = e_tt;
e0->inc();
}else if( e1==e3 ){
- Expr* x = ((CExpr*)l->followDefs())->kids[1];
+ // Expr* x = ((CExpr*)l->followDefs())->kids[1];
e0 = e_ff;
e0->inc();
}else{