commit | d5dd696fe3049657c08eb14f40cb74b6e94e79cc | [log] [tgz] |
---|---|---|
author | Richard Henderson <rth@twiddle.net> | Fri Sep 21 10:40:48 2012 -0700 |
committer | Richard Henderson <rth@twiddle.net> | Fri Sep 21 22:02:16 2012 +0200 |
tree | 02e02abb7418e3674c45c22da8a8cff95173c3c1 | |
parent | a221ae3fcc55fcc3911587bc572af88eed3342dd [diff] |
tcg-sparc: Don't MAP_FIXED on top of the program The address we pick in sparc64.ld is also 0x60000000, so doing a fixed map on top of that is guaranteed to blow up. Choosing 0x40000000 is exactly right for the max of code_gen_buffer_size set below. No need to ever use MAP_FIXED. While getting our desired address helps optimize the generated code, we won't fail if we don't get it. Signed-off-by: Richard Henderson <rth@twiddle.net>