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
e796fd77
Commit
e796fd77
authored
May 06, 2016
by
Jakub Jelinek
Committed by
Jakub Jelinek
May 06, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* genmddump.c (main): Convert argv from char ** to const char **.
From-SVN: r235985
parent
64c06b13
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
3 deletions
+6
-3
gcc/ChangeLog
+4
-0
gcc/genmddump.c
+2
-3
No files found.
gcc/ChangeLog
View file @
e796fd77
2016-05-06 Jakub Jelinek <jakub@redhat.com>
* genmddump.c (main): Convert argv from char ** to const char **.
2016-05-06 David Malcolm <dmalcolm@redhat.com>
* coretypes.h (OVERRIDE): New macro.
...
...
gcc/genmddump.c
View file @
e796fd77
...
...
@@ -35,10 +35,10 @@
#include "gensupport.h"
extern
int
main
(
int
,
char
**
);
extern
int
main
(
int
,
c
onst
c
har
**
);
int
main
(
int
argc
,
char
**
argv
)
main
(
int
argc
,
c
onst
c
har
**
argv
)
{
progname
=
"genmddump"
;
...
...
@@ -57,4 +57,3 @@ main (int argc, char **argv)
fflush
(
stdout
);
return
(
ferror
(
stdout
)
!=
0
?
FATAL_EXIT_CODE
:
SUCCESS_EXIT_CODE
);
}
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