diff options
author | Kai Tietz <kai.tietz@onevision.com> | 2008-04-02 07:57:02 +0000 |
---|---|---|
committer | Kai Tietz <ktietz@gcc.gnu.org> | 2008-04-02 09:57:02 +0200 |
commit | 893125e0d62046c5ea553564dbafbf66a36ddd27 (patch) | |
tree | acccb732cd3b2cf90bd65082c25453b5398cf644 /gcc/config/i386/cygming.h | |
parent | e8930cc1e2b31c8b15b9972b7168733b73f13e52 (diff) | |
download | gcc-893125e0d62046c5ea553564dbafbf66a36ddd27.tar.gz |
cygming.h (ASM_OUTPUT_DWARF_OFFSET): Add 8 byte offsets for 64-bit mingw.
2008-04-02 Kai Tietz <kai.tietz@onevision.com>
* gcc/config/i386/cygming.h (ASM_OUTPUT_DWARF_OFFSET): Add 8 byte
offsets for 64-bit mingw.
* gcc/config/i386/i386.c (ix86_pass_by_reference): Correct calling
abi for x86_64-pc-mingw.
From-SVN: r133825
Diffstat (limited to 'gcc/config/i386/cygming.h')
-rw-r--r-- | gcc/config/i386/cygming.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/config/i386/cygming.h b/gcc/config/i386/cygming.h index da6f61980e2..65311da0601 100644 --- a/gcc/config/i386/cygming.h +++ b/gcc/config/i386/cygming.h @@ -55,7 +55,7 @@ along with GCC; see the file COPYING3. If not see won't allow it. */ #define ASM_OUTPUT_DWARF_OFFSET(FILE, SIZE, LABEL, SECTION) \ do { \ - if (SIZE != 4) \ + if (SIZE != 4 && (!TARGET_64BIT || SIZE != 8)) \ abort (); \ \ fputs ("\t.secrel32\t", FILE); \ |