diff options
author | Tristan Gingold <tgingold@free.fr> | 2022-04-04 06:52:22 +0200 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2022-04-04 06:52:22 +0200 |
commit | ec6709df668b989f6543a7da985e894c6b538efc (patch) | |
tree | 529ce3ad329b7d51073014634a44048396b3d75a /src | |
parent | 9b76246c3d37730a0e19fced2a68e53fe5c7b55b (diff) | |
download | ghdl-ec6709df668b989f6543a7da985e894c6b538efc.tar.gz ghdl-ec6709df668b989f6543a7da985e894c6b538efc.tar.bz2 ghdl-ec6709df668b989f6543a7da985e894c6b538efc.zip |
ortho/mcode: fix win64 stack alignment
Diffstat (limited to 'src')
-rw-r--r-- | src/ortho/mcode/ortho_code-x86-flags_windows64.ads | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ortho/mcode/ortho_code-x86-flags_windows64.ads b/src/ortho/mcode/ortho_code-x86-flags_windows64.ads index cf7320188..165d60e07 100644 --- a/src/ortho/mcode/ortho_code-x86-flags_windows64.ads +++ b/src/ortho/mcode/ortho_code-x86-flags_windows64.ads @@ -22,7 +22,7 @@ package Ortho_Code.X86.Flags_Windows64 is -- Prefered stack alignment. -- Must be a power of 2. - Stack_Boundary : constant Unsigned_32 := 2 ** 3; + Stack_Boundary : constant Unsigned_32 := 2 ** 4; -- Alignment for double (64 bit float). Mode_F64_Align : constant Natural := 3; |