# HG changeset patch # User Roland Schatz # Date 1380194268 -7200 # Node ID 14904566a4b21e5c3dae8fb4ddaea5a67a7a7cfa # Parent 73a886a9564a72dd8f7058d8e3f97c79accab2a9 Use 32 byte code alignment for Graal on x86. diff -r 73a886a9564a -r 14904566a4b2 src/cpu/x86/vm/globals_x86.hpp --- a/src/cpu/x86/vm/globals_x86.hpp Thu Sep 26 11:15:45 2013 +0200 +++ b/src/cpu/x86/vm/globals_x86.hpp Thu Sep 26 13:17:48 2013 +0200 @@ -46,7 +46,7 @@ // the the vep is aligned at CodeEntryAlignment whereas c2 only aligns // the uep and the vep doesn't get real alignment but just slops on by // only assured that the entry instruction meets the 5 byte size requirement. -#ifdef COMPILER2 +#if defined(COMPILER2) || defined(GRAAL) define_pd_global(intx, CodeEntryAlignment, 32); #else define_pd_global(intx, CodeEntryAlignment, 16);