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
2e64c636
Commit
2e64c636
authored
Nov 10, 2002
by
Jan Hubicka
Committed by
Jan Hubicka
Nov 10, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* i386.h (MIN_UNITS_PER_WORD): Define to 8 for x86-64 libgcc.
From-SVN: r58986
parent
a2eb270a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
1 deletions
+9
-1
gcc/ChangeLog
+4
-0
gcc/config/i386/i386.h
+5
-1
No files found.
gcc/ChangeLog
View file @
2e64c636
Sun
Nov
10
18
:
49
:
21
CET
2002
Jan
Hubicka
<
jh
@suse
.
cz
>
*
i386
.
h
(
MIN_UNITS_PER_WORD
)
:
Define
to
8
for
x86
-
64
libgcc
.
2002
-
11
-
10
Joseph
S
.
Myers
<
jsm
@polyomino
.
org
.
uk
>
2002
-
11
-
10
Joseph
S
.
Myers
<
jsm
@polyomino
.
org
.
uk
>
*
c
-
decl
.
c
(
grokdeclarator
)
:
Make
error
for
duplicate
type
*
c
-
decl
.
c
(
grokdeclarator
)
:
Make
error
for
duplicate
type
...
...
gcc/config/i386/i386.h
View file @
2e64c636
...
@@ -691,7 +691,11 @@ extern int x86_prefetch_sse;
...
@@ -691,7 +691,11 @@ extern int x86_prefetch_sse;
/* Width of a word, in units (bytes). */
/* Width of a word, in units (bytes). */
#define UNITS_PER_WORD (TARGET_64BIT ? 8 : 4)
#define UNITS_PER_WORD (TARGET_64BIT ? 8 : 4)
#define MIN_UNITS_PER_WORD 4
#ifdef IN_LIBGCC2
#define MIN_UNITS_PER_WORD (TARGET_64BIT ? 8 : 4)
#else
#define MIN_UNITS_PER_WORD 4
#endif
/* Allocation boundary (in *bits*) for storing arguments in argument list. */
/* Allocation boundary (in *bits*) for storing arguments in argument list. */
#define PARM_BOUNDARY BITS_PER_WORD
#define PARM_BOUNDARY BITS_PER_WORD
...
...
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