From 97ebb345943918a0688b62cbc9bf878de01ccba4 Mon Sep 17 00:00:00 2001 From: Luc Van Oostenryck Date: Mon, 20 Feb 2017 11:45:36 +0100 Subject: [PATCH] use VOID instead of directly using &void_pseudo Signed-off-by: Luc Van Oostenryck Signed-off-by: Christopher Li --- linearize.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/linearize.c b/linearize.c index bdc85beb..5199b6b0 100644 --- a/linearize.c +++ b/linearize.c @@ -1866,7 +1866,7 @@ static pseudo_t linearize_return(struct entrypoint *ep, struct statement *stmt) struct basic_block *active; pseudo_t src = linearize_expression(ep, expr); active = ep->active; - if (active && src != &void_pseudo) { + if (active && src != VOID) { struct instruction *phi_node = first_instruction(bb_return->insns); pseudo_t phi; if (!phi_node) { -- 2.11.4.GIT