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
654209e6
Commit
654209e6
authored
Aug 08, 1993
by
Jim Wilson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(sparc_type_code): Support range types.
From-SVN: r5116
parent
591b15bb
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
0 deletions
+8
-0
gcc/config/sparc/sparc.c
+8
-0
No files found.
gcc/config/sparc/sparc.c
View file @
654209e6
...
@@ -2947,6 +2947,14 @@ sparc_type_code (type)
...
@@ -2947,6 +2947,14 @@ sparc_type_code (type)
return
(
qualifiers
|
16
);
return
(
qualifiers
|
16
);
case
INTEGER_TYPE
:
case
INTEGER_TYPE
:
/* If this is a range type, consider it to be the underlying
type. */
if
(
TREE_TYPE
(
type
)
!=
0
)
{
type
=
TREE_TYPE
(
type
);
break
;
}
/* Carefully distinguish all the standard types of C,
/* Carefully distinguish all the standard types of C,
without messing up if the language is not C.
without messing up if the language is not C.
Note that we check only for the names that contain spaces;
Note that we check only for the names that contain spaces;
...
...
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