diff options
author | Sverker Eriksson <[email protected]> | 2013-01-21 17:10:00 +0100 |
---|---|---|
committer | Sverker Eriksson <[email protected]> | 2013-01-21 17:10:00 +0100 |
commit | f89fe85da040a316e5dae2935edd8bd9f3155506 (patch) | |
tree | 1dd36881da2a3106061efea63f1a7d8debfd342a /erts/emulator/hipe | |
parent | 65c7e90605fc653c5a4a19e91334bd29c981f02d (diff) | |
download | otp-f89fe85da040a316e5dae2935edd8bd9f3155506.tar.gz otp-f89fe85da040a316e5dae2935edd8bd9f3155506.tar.bz2 otp-f89fe85da040a316e5dae2935edd8bd9f3155506.zip |
Fix compiler error for hipe in debug emulator
Use am_undefined as it seems to be more releable to exist.
Diffstat (limited to 'erts/emulator/hipe')
-rw-r--r-- | erts/emulator/hipe/hipe_x86_gc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/erts/emulator/hipe/hipe_x86_gc.h b/erts/emulator/hipe/hipe_x86_gc.h index aa4abb6f59..4bea9276c0 100644 --- a/erts/emulator/hipe/hipe_x86_gc.h +++ b/erts/emulator/hipe/hipe_x86_gc.h @@ -71,7 +71,7 @@ nstack_walk_init_sdesc(const Process *p, struct nstack_walk_state *state) state->sdesc0[0].livebits[0] = 0; # ifdef DEBUG state->sdesc0[0].dbg_M = 0; - state->sdesc0[0].dbg_F = am_init; + state->sdesc0[0].dbg_F = am_undefined; state->sdesc0[0].dbg_A = 0; # endif /* XXX: this appears to prevent a gcc-4.1.1 bug on x86 */ |