diff options
author | ktietz <ktietz@138bc75d-0d04-0410-961f-82ee72b054a4> | 2008-04-02 07:57:02 +0000 |
---|---|---|
committer | ktietz <ktietz@138bc75d-0d04-0410-961f-82ee72b054a4> | 2008-04-02 07:57:02 +0000 |
commit | c61eb7732ed4abc1c9cf0d9a040dd32a0220db89 (patch) | |
tree | acccb732cd3b2cf90bd65082c25453b5398cf644 /gcc/config/i386/cygming.h | |
parent | c8c521bb521656690e5da84440e9843012a37ebb (diff) | |
download | gcc-c61eb7732ed4abc1c9cf0d9a040dd32a0220db89.tar.gz |
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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@133825 138bc75d-0d04-0410-961f-82ee72b054a4
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); \ |