diff options
author | dansan <dansan@138bc75d-0d04-0410-961f-82ee72b054a4> | 2017-07-24 21:59:57 +0000 |
---|---|---|
committer | dansan <dansan@138bc75d-0d04-0410-961f-82ee72b054a4> | 2017-07-24 21:59:57 +0000 |
commit | 65e1ae67de7bc5e7c46e711beccee64685b37976 (patch) | |
tree | e297b5bb11ee15fc43734a7566a4d8f7dfa20944 /libgcc/ChangeLog | |
parent | 0a3cd125b6a65adab15a6e21abca477a600acc3c (diff) | |
download | gcc-65e1ae67de7bc5e7c46e711beccee64685b37976.tar.gz |
PR testsuite/80759 Fix -mcall-ms2sysv-xlogues on Darwin and Solaris
2017-07-24 Daniel Santos <daniel.santos@pobox.com>
PR testsuite/80759
* config.host: include i386/t-msabi for darwin and solaris.
* config/i386/i386-asm.h
(ELFFN): Rename to FN_TYPE.
(FN_SIZE): New macro.
(FN_HIDDEN): Likewise.
(ASMNAME): Likewise.
(FUNC_START): Rename to FUNC_BEGIN, use ASMNAME, replace .global with
.globl.
(HIDDEN_FUNC): Use ASMNAME and .globl instead of .global.
(SSE_SAVE): Convert to cpp macro, hard-code offset (always 0x60).
* config/i386/resms64.S: Use SSE_SAVE as cpp macro instead of gas
.macro.
* config/i386/resms64f.S: Likewise.
* config/i386/resms64fx.S: Likewise.
* config/i386/resms64x.S: Likewise.
* config/i386/savms64.S: Likewise.
* config/i386/savms64f.S: Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@250488 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libgcc/ChangeLog')
-rw-r--r-- | libgcc/ChangeLog | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/libgcc/ChangeLog b/libgcc/ChangeLog index db33eea1378..cb25039b1a7 100644 --- a/libgcc/ChangeLog +++ b/libgcc/ChangeLog @@ -1,3 +1,24 @@ +2017-07-24 Daniel Santos <daniel.santos@pobox.com> + + PR testsuite/80759 + * config.host: include i386/t-msabi for darwin and solaris. + * config/i386/i386-asm.h + (ELFFN): Rename to FN_TYPE. + (FN_SIZE): New macro. + (FN_HIDDEN): Likewise. + (ASMNAME): Likewise. + (FUNC_START): Rename to FUNC_BEGIN, use ASMNAME, replace .global with + .globl. + (HIDDEN_FUNC): Use ASMNAME and .globl instead of .global. + (SSE_SAVE): Convert to cpp macro, hard-code offset (always 0x60). + * config/i386/resms64.S: Use SSE_SAVE as cpp macro instead of gas + .macro. + * config/i386/resms64f.S: Likewise. + * config/i386/resms64fx.S: Likewise. + * config/i386/resms64x.S: Likewise. + * config/i386/savms64.S: Likewise. + * config/i386/savms64f.S: Likewise. + 2017-07-19 John Marino <gnugcc@marino.st> * config/i386/dragonfly-unwind.h: Handle sigtramp relocation. |