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
27d21d32
Commit
27d21d32
authored
32 years ago
by
Richard Stallman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
*** empty log message ***
From-SVN: r1288
parent
667cc897
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
15 deletions
+8
-15
gcc/dbxout.c
+0
-11
gcc/ginclude/va-i860.h
+2
-2
gcc/libgcc2.c
+6
-2
No files found.
gcc/dbxout.c
View file @
27d21d32
...
...
@@ -1402,16 +1402,6 @@ dbxout_symbol (decl, local)
fprintf
(
asmfile
,
"%s
\"
%s:"
,
ASM_STABS_OP
,
IDENTIFIER_POINTER
(
DECL_NAME
(
decl
)));
/* #ifndef DBX_NO_EXTRA_TAGS rms: I think this is no longer needed. */
/* This section makes absolutely no sense to me. Why would a tag
ever be needed at this point? The result of this is that any
structure typedef with the tag omitted is treated as if the
tag was given to be the same as the typedef name. Probably
no harm in it, unless the programmer used the same name for
the tag of a *different* structure. At any rate, Alliant's
debugger would want the tag output before the typedef, so
this code still loses. -- hyc */
/* Short cut way to output a tag also. */
if
((
TREE_CODE
(
type
)
==
RECORD_TYPE
||
TREE_CODE
(
type
)
==
UNION_TYPE
)
...
...
@@ -1427,7 +1417,6 @@ dbxout_symbol (decl, local)
tag_needed = 1;
#endif
}
/* #endif */
putc
(
't'
,
asmfile
);
current_sym_code
=
DBX_TYPE_DECL_STABS_CODE
;
...
...
This diff is collapsed.
Click to expand it.
gcc/ginclude/va-i860.h
View file @
27d21d32
...
...
@@ -31,7 +31,7 @@ typedef union {
}
__f_regs
;
typedef
struct
{
#if
def __SVR4__
#if
defined(__SVR4__) || defined(__alliant__)
__f_regs
__float_regs
;
long
__ireg
[
12
];
#else
/* pre-SVR4 */
long
__ireg
[
12
];
__f_regs
__float_regs
;
...
...
@@ -43,7 +43,7 @@ typedef struct {
#define __GNU_VA_LIST
/* Field names were properly prefixed with `__'. */
typedef
struct
{
#if
def __SVR4__
#if
defined(__SVR4__) || defined(__alliant__)
unsigned
__ireg_used
;
/* How many int regs consumed 'til now? */
unsigned
__freg_used
;
/* How many flt regs consumed 'til now? */
long
*
__reg_base
;
/* Address of where we stored the regs. */
...
...
This diff is collapsed.
Click to expand it.
gcc/libgcc2.c
View file @
27d21d32
...
...
@@ -764,13 +764,17 @@ __fixunssfsi (float a)
#ifdef L_varargs
#ifdef __i860__
#if
def SVR4
#if
defined(SVR4) || defined(__alliant__)
asm
(
" .text"
);
asm
(
" .align 4"
);
/* The Alliant needs the added underscore. */
asm
(
".globl __builtin_saveregs"
);
asm
(
"__builtin_saveregs:"
);
asm
(
" andnot 0x0f,%sp,%sp"
);
/* round down to 16-byte boundary */
asm
(
".globl ___builtin_saveregs"
);
asm
(
"___builtin_saveregs:"
);
asm
(
" andnot 0x0f,%sp,%sp"
);
/* round down to 16-byte boundary */
asm
(
" adds -96,%sp,%sp"
);
/* allocate stack space for reg save
area and also for a new va_list
structure */
...
...
This diff is collapsed.
Click to expand it.
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