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
e4c0478d
Commit
e4c0478d
authored
Jan 03, 2000
by
Hans-Peter Nilsson
Committed by
Hans-Peter Nilsson
Jan 03, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* config/i386/i386.c (override_options): Fix option-name typo.
From-SVN: r31170
parent
213800dd
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
2 deletions
+6
-2
gcc/ChangeLog
+4
-0
gcc/config/i386/i386.c
+2
-2
No files found.
gcc/ChangeLog
View file @
e4c0478d
Mon
Jan
3
02
:
54
:
40
2000
Hans
-
Peter
Nilsson
<
hp
@bitrange
.
com
>
*
config
/
i386
/
i386
.
c
(
override_options
)
:
Fix
option
-
name
typo
.
2000
-
01
-
02
Mark
Mitchell
<
mark
@codesourcery
.
com
>
*
system
.
h
(
CEIL
)
:
Define
.
...
...
gcc/config/i386/i386.c
View file @
e4c0478d
...
...
@@ -491,14 +491,14 @@ override_options ()
ix86_align_funcs
,
MAX_CODE_ALIGN
);
}
/* Validate -mpreferred
_stack_
boundary= value, or provide default.
/* Validate -mpreferred
-stack-
boundary= value, or provide default.
The default of 128 bits is for Pentium III's SSE __m128. */
ix86_preferred_stack_boundary
=
128
;
if
(
ix86_preferred_stack_boundary_string
)
{
int
i
=
atoi
(
ix86_preferred_stack_boundary_string
);
if
(
i
<
2
||
i
>
31
)
fatal
(
"-mpreferred
_stack_
boundary=%d is not between 2 and 31"
,
i
);
fatal
(
"-mpreferred
-stack-
boundary=%d is not between 2 and 31"
,
i
);
ix86_preferred_stack_boundary
=
(
1
<<
i
)
*
BITS_PER_UNIT
;
}
...
...
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