X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fdo-if.c;h=d7e80e5cdcc04fd49897325abfb13b5ed18dd1ce;hb=a1887dd91b27990bba31adb888a4273379a4bf8c;hp=73fc057c037ac6ad15f383bb3ed432adf7622957;hpb=06f9ee45954e5e71fa7f6262dbf37defa1dbf996;p=pspp-builds.git diff --git a/src/do-if.c b/src/do-if.c index 73fc057c..d7e80e5c 100644 --- a/src/do-if.c +++ b/src/do-if.c @@ -24,7 +24,7 @@ #include "alloc.h" #include "command.h" #include "error.h" -#include "expr.h" +#include "expressions/public.h" #include "lexer.h" #include "str.h" #include "var.h" @@ -244,7 +244,7 @@ parse_do_if (void) struct do_if_trns *t; struct expression *e; - e = expr_parse (EXPR_BOOLEAN); + e = expr_parse (default_dict, EXPR_BOOLEAN); if (!e) return NULL; if (token != '.') @@ -276,15 +276,15 @@ do_if_trns_proc (struct trns_header * trns, struct ccase * c, int case_num UNUSED) { struct do_if_trns *t = (struct do_if_trns *) trns; - union value bool; + double boolean; - expr_evaluate (t->cond, c, case_num, &bool); - if (bool.f == 1.0) + boolean = expr_evaluate_num (t->cond, c, case_num); + if (boolean == 1.0) { debug_printf ((_("DO IF %d: true\n"), t->h.index)); return -1; } - else if (bool.f == 0.0) + else if (boolean == 0.0) { debug_printf ((_("DO IF %d: false\n"), t->h.index)); return t->false_jump;