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
205e9268
Commit
205e9268
authored
Nov 09, 2014
by
Andreas Schwab
Committed by
Andreas Schwab
Nov 09, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* gcc.target/powerpc/pr51623.c: Fix implicit declarations.
From-SVN: r217264
parent
1e51d0a2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
0 deletions
+9
-0
gcc/testsuite/ChangeLog
+4
-0
gcc/testsuite/gcc.target/powerpc/pr51623.c
+5
-0
No files found.
gcc/testsuite/ChangeLog
View file @
205e9268
2014
-
11
-
09
Andreas
Schwab
<
schwab
@
linux
-
m68k
.
org
>
*
gcc
.
target
/
powerpc
/
pr51623
.
c
:
Fix
implicit
declarations
.
2014
-
11
-
09
Richard
Biener
<
rguenther
@
suse
.
de
>
*
g
++.
dg
/
cpp0x
/
constexpr
-
reinterpret1
.
C
:
XFAIL
.
...
...
gcc/testsuite/gcc.target/powerpc/pr51623.c
View file @
205e9268
...
...
@@ -16,6 +16,7 @@ struct mtd_info {
};
extern
int
strcmp
(
const
char
*
,
const
char
*
);
extern
int
strncmp
(
const
char
*
,
const
char
*
,
size_t
);
extern
char
*
strchr
(
const
char
*
,
int
);
struct
cmd_tbl_s
{
...
...
@@ -24,13 +25,17 @@ struct cmd_tbl_s {
int
printf
(
const
char
*
fmt
,
...)
__attribute__
((
format
(
__printf__
,
1
,
2
)));
int
putc
(
int
);
void
*
malloc
(
size_t
);
void
free
(
void
*
);
extern
unsigned
long
simple_strtoul
(
const
char
*
,
char
**
,
unsigned
int
);
extern
int
nand_curr_device
;
extern
struct
mtd_info
nand_info
[];
extern
void
cmd_usage
(
struct
cmd_tbl_s
*
);
static
int
nand_dump
(
struct
mtd_info
*
nand
,
unsigned
long
off
,
int
only_oob
)
{
int
i
;
...
...
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