public inbox for gcc-patches@gcc.gnu.org
 help / color / mirror / Atom feed
* [patch libgcc]: Prepare cygwin.S file to share code with cygwin64
@ 2013-03-22  8:40 Kai Tietz
  0 siblings, 0 replies; only message in thread
From: Kai Tietz @ 2013-03-22  8:40 UTC (permalink / raw)
  To: GCC Patches

Hi,

this patch replaces use of _WIN64 by __x86_64__ so mingw x64 and
cygwin x64 version can share same source.

ChangeLog

2013-03-22  Kai Tietz  <ktietz@redhat.com>

	* config/i386/cygwin.S: Replace use of _WIN64 by __x86_64__.

Tested for x86_64-w64-mingw32, x86_64-pc-cygwin, and i686-w64-mingw32.
 I will apply tomorrow if there
are no objections by other Windows-maintainers.

Regards,
Kai

Index: libgcc/config/i386/cygwin.S
===================================================================
--- libgcc/config/i386/cygwin.S	(Revision 196898)
+++ libgcc/config/i386/cygwin.S	(Arbeitskopie)
@@ -32,7 +32,7 @@
 # define cfi_adjust_cfa_offset(X) 	.cfi_adjust_cfa_offset X
 # define cfi_def_cfa_register(X)	.cfi_def_cfa_register X
 # define cfi_register(D,S)		.cfi_register D, S
-# ifdef _WIN64
+# ifdef __x86_64__
 #  define cfi_push(X)		.cfi_adjust_cfa_offset 8; .cfi_rel_offset X, 0
 #  define cfi_pop(X)		.cfi_adjust_cfa_offset -8; .cfi_restore X
 # else
@@ -57,7 +57,7 @@

 	.global ___chkstk
 	.global	__alloca
-#ifdef _WIN64
+#ifdef __x86_64__
 /* __alloca is a normal function call, which uses %rcx as the argument.  */
 	cfi_startproc()
 __alloca:
@@ -123,7 +123,7 @@ __alloca:
 	pushl	4(%eax)
 	ret
 	cfi_endproc()
-#endif /* _WIN64 */
+#endif /* __x86_64__ */
 #endif /* L_chkstk */

 #ifdef L_chkstk_ms
@@ -131,7 +131,7 @@ __alloca:
    We avoid clobbering any registers.  Unlike ___chkstk, it just probes the
    stack and does no stack allocation.  */
 	.global ___chkstk_ms
-#ifdef _WIN64
+#ifdef __x86_64__
 	cfi_startproc()
 ___chkstk_ms:
 	pushq	%rcx			/* save temps */
@@ -183,5 +183,5 @@ ___chkstk_ms:
 	cfi_pop(%ecx)
 	ret
 	cfi_endproc()
-#endif /* _WIN64 */
+#endif /* __x86_64__ */
 #endif /* L_chkstk_ms */

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2013-03-22  8:40 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-03-22  8:40 [patch libgcc]: Prepare cygwin.S file to share code with cygwin64 Kai Tietz

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).