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
c6d79bee
Commit
c6d79bee
authored
24 years ago
by
Jan Hubicka
Committed by
Jan Hubicka
24 years ago
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* genoutput.c (process_template): Add sanity checking for '@' templates.
From-SVN: r38220
parent
ee84a135
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
0 deletions
+13
-0
gcc/ChangeLog
+4
-0
gcc/genoutput.c
+9
-0
No files found.
gcc/ChangeLog
View file @
c6d79bee
Wed Dec 13 17:25:32 MET 2000 Jan Hubicka <jh@suse.cz>
* genoutput.c (process_template): Add sanity checking for '@' templates.
2000-12-13 Bernd Schmidt <bernds@redhat.co.uk>
* simplify-rtx.c (cselib_finish): Free reg_values and used_regs
...
...
This diff is collapsed.
Click to expand it.
gcc/genoutput.c
View file @
c6d79bee
...
...
@@ -701,6 +701,15 @@ process_template (d, template)
printf
(
"
\"
,
\n
"
);
i
++
;
}
if
(
i
==
1
)
message_with_line
(
d
->
lineno
,
"'@' is redundant for output template with single alternative"
);
if
(
i
!=
d
->
n_alternatives
)
{
message_with_line
(
d
->
lineno
,
"Wrong number of alternatives in the output template"
);
have_error
=
1
;
}
printf
(
"};
\n
"
);
}
...
...
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