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
6b98c8f4
Commit
6b98c8f4
authored
Apr 01, 1994
by
Jim Wilson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Modify all uses of __attribute__ mode to use new syntax.
From-SVN: r6956
parent
eea77e5f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
12 deletions
+12
-12
gcc/libgcc2.c
+12
-12
No files found.
gcc/libgcc2.c
View file @
6b98c8f4
...
...
@@ -48,28 +48,28 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
because the sizes for those types can be configured to be anything.
Instead we use the following special type names. */
typedef
unsigned
int
UQItype
__attribute__
((
mode
(
QI
)));
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
)));
typedef
unsigned
int
UQItype
__attribute__
((
mode
(
"QI"
)));
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
)));
typedef
float
XFtype
__attribute__
((
mode
(
"XF"
)));
#endif
#if LONG_DOUBLE_TYPE_SIZE == 128
typedef
float
TFtype
__attribute__
((
mode
(
TF
)));
typedef
float
TFtype
__attribute__
((
mode
(
"TF"
)));
#endif
#if BITS_PER_WORD==16
typedef
int
word_type
__attribute__
((
mode
(
HI
)));
typedef
int
word_type
__attribute__
((
mode
(
"HI"
)));
#endif
#if BITS_PER_WORD==32
typedef
int
word_type
__attribute__
((
mode
(
SI
)));
typedef
int
word_type
__attribute__
((
mode
(
"SI"
)));
#endif
#if BITS_PER_WORD==64
typedef
int
word_type
__attribute__
((
mode
(
DI
)));
typedef
int
word_type
__attribute__
((
mode
(
"DI"
)));
#endif
/* Make sure that we don't accidentally use any normal C language built-in
...
...
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