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
07704a9a
Commit
07704a9a
authored
May 22, 1998
by
Richard Earnshaw
Committed by
Richard Earnshaw
May 22, 1998
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
genextract.c (print_path): Handle zero-length path as a special case.
From-SVN: r19947
parent
27fafc8d
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
0 deletions
+13
-0
gcc/ChangeLog
+5
-0
gcc/genextract.c
+8
-0
No files found.
gcc/ChangeLog
View file @
07704a9a
Fri May 22 03:42:05 1998 Richard Earnshaw (rearnsha@arm.com)
* genextract.c (print_path): Handle zero-length path as a special
case.
Fri May 22 01:38:07 1998 Hans-Peter Nilsson <hp@axis.se>
* cplus-dem.c (MBUF_SIZE): Bumped from 512 to 32767.
...
...
gcc/genextract.c
View file @
07704a9a
...
...
@@ -318,6 +318,14 @@ print_path (path)
register
int
len
=
strlen
(
path
);
register
int
i
;
if
(
len
==
0
)
{
/* Don't emit "pat", since we may try to take the address of it,
which isn't what is intended. */
printf
(
"PATTERN (insn)"
);
return
;
}
/* We first write out the operations (XEXP or XVECEXP) in reverse
order, then write "insn", then the indices in forward order. */
...
...
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