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
cce097f1
Commit
cce097f1
authored
Mar 09, 2000
by
Jason Merrill
Committed by
Jason Merrill
Mar 09, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* i386.c (ix86_valid_type_attribute_p): Use compare_tree_int.
From-SVN: r32450
parent
fb13d4d0
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
gcc/ChangeLog
+2
-0
gcc/config/i386/i386.c
+1
-3
No files found.
gcc/ChangeLog
View file @
cce097f1
2000
-
03
-
09
Jason
Merrill
<
jason
@casey
.
cygnus
.
com
>
*
i386
.
c
(
ix86_valid_type_attribute_p
)
:
Use
compare_tree_int
.
*
except
.
c
(
can_throw
)
:
See
through
a
SEQUENCE
.
(
nothrow_function_p
)
:
New
fn
.
*
except
.
h
:
Declare
it
.
...
...
gcc/config/i386/i386.c
View file @
cce097f1
...
...
@@ -737,9 +737,7 @@ ix86_valid_type_attribute_p (type, attributes, identifier, args)
if
(
TREE_CODE
(
cst
)
!=
INTEGER_CST
)
return
0
;
if
(
TREE_INT_CST_HIGH
(
cst
)
!=
0
||
TREE_INT_CST_LOW
(
cst
)
<
0
||
TREE_INT_CST_LOW
(
cst
)
>
REGPARM_MAX
)
if
(
compare_tree_int
(
cst
,
REGPARM_MAX
)
>
0
)
return
0
;
return
1
;
...
...
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