From 8c3d620d54a189cd2fb751d1462712d88e007bb6 Mon Sep 17 00:00:00 2001 From: Michael Beck Date: Tue, 4 Mar 2008 19:04:30 +0000 Subject: [PATCH] set deleted attributes to NULL [r17963] --- ir/be/beabi.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ir/be/beabi.c b/ir/be/beabi.c index d6c0bbdb5..22f408d6c 100644 --- a/ir/be/beabi.c +++ b/ir/be/beabi.c @@ -2055,9 +2055,11 @@ be_abi_irg_t *be_abi_introduce(be_irg_t *birg) /* We don't need the keep map anymore. */ pmap_destroy(env->keep_map); + env->keep_map = NULL; /* calls array is not needed anymore */ DEL_ARR_F(env->calls); + env->calls = NULL; /* reroute the stack origin of the calls to the true stack origin. */ exchange(dummy, env->init_sp); -- 2.20.1