diff options
author | gingold | 2006-10-02 04:30:41 +0000 |
---|---|---|
committer | gingold | 2006-10-02 04:30:41 +0000 |
commit | 1a8ab7e7b403ed41710166cba264606089510f67 (patch) | |
tree | 3511ca067987f3cc7494fcbd12ca36a2dc4457a1 | |
parent | 190d3ce1bf25bc811d3c2d444039b3552837bc98 (diff) | |
download | ghdl-1a8ab7e7b403ed41710166cba264606089510f67.tar.gz ghdl-1a8ab7e7b403ed41710166cba264606089510f67.tar.bz2 ghdl-1a8ab7e7b403ed41710166cba264606089510f67.zip |
Set ABI flags for windows
-rw-r--r-- | translate/mcode/windows/ortho_code-sysdeps.adb | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/translate/mcode/windows/ortho_code-sysdeps.adb b/translate/mcode/windows/ortho_code-sysdeps.adb new file mode 100644 index 0000000..dbff7b6 --- /dev/null +++ b/translate/mcode/windows/ortho_code-sysdeps.adb @@ -0,0 +1,8 @@ +with Ortho_Code.X86.Flags; + +package body Ortho_Code.Sysdeps is + procedure Init is + begin + Ortho_Code.X86.Flags.Flag_Alloca_Call := True; + end Init; +end Ortho_Code.Sysdeps; |