Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
riscv-gcc-1
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
riscv-gcc-1
Commits
55446c7e
Commit
55446c7e
authored
Mar 25, 2013
by
Kai Tietz
Committed by
Kai Tietz
Mar 25, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* config/i386/cygwin.S: Replace use of _WIN64 by __x86_64__.
From-SVN: r197050
parent
f992b9fc
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
5 deletions
+9
-5
libgcc/ChangeLog
+4
-0
libgcc/config/i386/cygwin.S
+5
-5
No files found.
libgcc/ChangeLog
View file @
55446c7e
2013-03-25 Kai Tietz <ktietz@redhat.com>
* config/i386/cygwin.S: Replace use of _WIN64 by __x86_64__.
2013-03-20 Robert Mason <rbmj@verizon.net>
* config/vxlib-tls.c (__gthread_get_tsd_data,)
...
...
libgcc/config/i386/cygwin.S
View file @
55446c7e
...
...
@@ -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 */
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment