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
a07805c0
Commit
a07805c0
authored
Nov 30, 1994
by
Richard Kenner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(word_type): Use __attribute__ ((mode (__word__))).
From-SVN: r8583
parent
caab5771
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
9 deletions
+3
-9
gcc/libgcc2.c
+3
-9
No files found.
gcc/libgcc2.c
View file @
a07805c0
...
...
@@ -62,8 +62,10 @@ typedef int SItype __attribute__ ((mode (SI)));
typedef
unsigned
int
USItype
__attribute__
((
mode
(
SI
)));
typedef
int
DItype
__attribute__
((
mode
(
DI
)));
typedef
unsigned
int
UDItype
__attribute__
((
mode
(
DI
)));
typedef
float
SFtype
__attribute__
((
mode
(
SF
)));
typedef
float
DFtype
__attribute__
((
mode
(
DF
)));
#if LONG_DOUBLE_TYPE_SIZE == 96
typedef
float
XFtype
__attribute__
((
mode
(
XF
)));
#endif
...
...
@@ -71,15 +73,7 @@ typedef float XFtype __attribute__ ((mode (XF)));
typedef
float
TFtype
__attribute__
((
mode
(
TF
)));
#endif
#if BITS_PER_WORD==16
typedef
int
word_type
__attribute__
((
mode
(
HI
)));
#endif
#if BITS_PER_WORD==32
typedef
int
word_type
__attribute__
((
mode
(
SI
)));
#endif
#if BITS_PER_WORD==64
typedef
int
word_type
__attribute__
((
mode
(
DI
)));
#endif
typedef
int
word_type
__attribute__
((
mode
(
__word__
)));
/* Make sure that we don't accidentally use any normal C language built-in
type names in the first part of this file. Instead we want to use *only*
...
...
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