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
5d9669fd
Commit
5d9669fd
authored
Jun 03, 2001
by
Richard Kenner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Minor whitespace edits
From-SVN: r42840
parent
77411c84
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
3 deletions
+5
-3
gcc/gcc.c
+2
-1
gcc/reload1.c
+3
-2
No files found.
gcc/gcc.c
View file @
5d9669fd
...
...
@@ -2869,7 +2869,8 @@ convert_filename (name, do_exe)
return
name
;
obstack_grow
(
&
obstack
,
name
,
len
);
obstack_grow0
(
&
obstack
,
TARGET_EXECUTABLE_SUFFIX
,
strlen
(
TARGET_EXECUTABLE_SUFFIX
));
obstack_grow0
(
&
obstack
,
TARGET_EXECUTABLE_SUFFIX
,
strlen
(
TARGET_EXECUTABLE_SUFFIX
));
name
=
obstack_finish
(
&
obstack
);
#endif
...
...
gcc/reload1.c
View file @
5d9669fd
...
...
@@ -2542,10 +2542,11 @@ eliminate_regs (x, mem_mode, insn)
(reg:m2 R) later, expecting all bits to be preserved.
So if the number of words is the same, preserve the
subreg so that push_reloads can see it. */
&&
!
((
x_size
-
1
)
/
UNITS_PER_WORD
==
(
new_size
-
1
)
/
UNITS_PER_WORD
)
&&
!
((
x_size
-
1
)
/
UNITS_PER_WORD
==
(
new_size
-
1
)
/
UNITS_PER_WORD
)
#endif
)
||
(
x_size
==
new_size
)
)
||
x_size
==
new_size
)
)
{
int
offset
=
SUBREG_BYTE
(
x
);
...
...
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