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
b9aa59fb
Commit
b9aa59fb
authored
Jan 25, 2006
by
Richard Sandiford
Committed by
Richard Sandiford
Jan 25, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* genattrtab.c (gen_bypass): Allow bypasses to contain whitespace.
From-SVN: r110206
parent
cc8d9561
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
1 deletions
+8
-1
gcc/ChangeLog
+4
-0
gcc/genattrtab.c
+4
-1
No files found.
gcc/ChangeLog
View file @
b9aa59fb
2006-01-25 Richard Sandiford <richard@codesourcery.com>
* genattrtab.c (gen_bypass): Allow bypasses to contain whitespace.
2006-01-25 Kaz Kojima <kkojima@gcc.gnu.org>
* config/sh/predicates.md (sh_register_operand): Accept CONST_DOUBLE.
...
...
gcc/genattrtab.c
View file @
b9aa59fb
...
...
@@ -4408,7 +4408,10 @@ gen_bypass (rtx def)
if
(
*
p
==
','
)
{
gen_bypass_1
(
base
,
p
-
base
);
base
=
p
+
1
;
do
p
++
;
while
(
ISSPACE
(
*
p
));
base
=
p
;
}
gen_bypass_1
(
base
,
p
-
base
);
}
...
...
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