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
af463efd
Commit
af463efd
authored
Sep 29, 1993
by
Richard Stallman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Initial revision
From-SVN: r5522
parent
265ff835
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
35 additions
and
0 deletions
+35
-0
gcc/bytetypes.h
+35
-0
No files found.
gcc/bytetypes.h
0 → 100644
View file @
af463efd
/* These should come from genemit */
/* Use __signed__ in case compiling with -traditional. */
typedef
__signed__
char
QItype
;
typedef
unsigned
char
QUtype
;
typedef
__signed__
short
int
HItype
;
typedef
unsigned
short
int
HUtype
;
typedef
__signed__
long
int
SItype
;
typedef
unsigned
long
int
SUtype
;
typedef
__signed__
long
long
int
DItype
;
typedef
unsigned
long
long
int
DUtype
;
typedef
float
SFtype
;
typedef
double
DFtype
;
typedef
long
double
XFtype
;
typedef
char
*
Ptype
;
typedef
int
Ttype
;
typedef
union
stacktype
{
QItype
QIval
;
QUtype
QUval
;
HItype
HIval
;
HUtype
HUval
;
SItype
SIval
;
SUtype
SUval
;
DItype
DIval
;
DUtype
DUval
;
SFtype
SFval
;
DFtype
DFval
;
XFtype
XFval
;
Ptype
Pval
;
Ttype
Tval
;
}
stacktype
;
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