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
00174bdf
Commit
00174bdf
authored
Sep 11, 2000
by
Kazu Hirata
Committed by
Jeff Law
Sep 11, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* integrate.c: Fix formatting.
From-SVN: r36319
parent
181d2ba0
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
8 deletions
+10
-8
gcc/ChangeLog
+4
-0
gcc/integrate.c
+6
-8
No files found.
gcc/ChangeLog
View file @
00174bdf
2000-09-11 Kazu Hirata <kazu@hxi.com>
* integrate.c: Fix formatting.
2000-09-11 Geoff Keating <geoffk@cygnus.com>
* alias.c (memrefs_conflict_p): An ADDRESSOF does conflict, sorry.
...
...
gcc/integrate.c
View file @
00174bdf
...
...
@@ -20,7 +20,6 @@ along with GNU CC; see the file COPYING. If not, write to
the Free Software Foundation, 59 Temple Place - Suite 330,
Boston, MA 02111-1307, USA. */
#include "config.h"
#include "system.h"
...
...
@@ -118,7 +117,7 @@ get_label_from_map (map, i)
rtx
x
=
map
->
label_map
[
i
];
if
(
x
==
NULL_RTX
)
x
=
map
->
label_map
[
i
]
=
gen_label_rtx
();
x
=
map
->
label_map
[
i
]
=
gen_label_rtx
();
return
x
;
}
...
...
@@ -1060,7 +1059,7 @@ expand_inline_function (fndecl, parms, target, ignore, type,
arriving_mode
=
departing_mode
;
}
else
abort
();
abort
();
}
target
=
gen_reg_rtx
(
departing_mode
);
...
...
@@ -1100,7 +1099,7 @@ expand_inline_function (fndecl, parms, target, ignore, type,
/* Initialize label_map. get_label_from_map will actually make
the labels. */
bzero
((
char
*
)
&
map
->
label_map
[
min_labelno
],
bzero
((
char
*
)
&
map
->
label_map
[
min_labelno
],
(
max_labelno
-
min_labelno
)
*
sizeof
(
rtx
));
/* Make copies of the decls of the symbols in the inline function, so that
...
...
@@ -1527,7 +1526,7 @@ copy_insn_list (insns, map, static_chain_value)
rtx
label
=
get_label_from_map
(
map
,
NOTE_EH_HANDLER
(
copy
));
/* we have to duplicate the handlers for the original
*/
/* We have to duplicate the handlers for the original.
*/
if
(
NOTE_LINE_NUMBER
(
copy
)
==
NOTE_INSN_EH_REGION_BEG
)
{
/* We need to duplicate the handlers for the EH region
...
...
@@ -1887,7 +1886,7 @@ copy_rtx_and_substitute (orig, map, for_lhs)
copy
=
gen_rtx_ADDRESSOF
(
mode
,
copy_rtx_and_substitute
(
XEXP
(
orig
,
0
),
map
,
for_lhs
),
0
,
ADDRESSOF_DECL
(
orig
));
0
,
ADDRESSOF_DECL
(
orig
));
regno
=
ADDRESSOF_REGNO
(
orig
);
if
(
map
->
reg_map
[
regno
])
regno
=
REGNO
(
map
->
reg_map
[
regno
]);
...
...
@@ -2007,8 +2006,7 @@ copy_rtx_and_substitute (orig, map, for_lhs)
copy_rtx_and_substitute
(
constant
,
map
,
for_lhs
)),
0
);
}
else
if
(
SYMBOL_REF_NEED_ADJUST
(
orig
))
else
if
(
SYMBOL_REF_NEED_ADJUST
(
orig
))
{
eif_eh_map
=
map
;
return
rethrow_symbol_map
(
orig
,
...
...
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