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
1fd4f141
Commit
1fd4f141
authored
Jan 04, 2001
by
Alexandre Oliva
Committed by
Alexandre Oliva
Jan 04, 2001
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* gencodes.c (output_predicate_decls): Remove empty initializer.
From-SVN: r38689
parent
519c9806
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
5 deletions
+9
-5
gcc/ChangeLog
+4
-0
gcc/gencodes.c
+5
-5
No files found.
gcc/ChangeLog
View file @
1fd4f141
2001-01-04 Alexandre Oliva <aoliva@redhat.com>
* gencodes.c (output_predicate_decls): Remove empty initializer.
2001-01-04 Mark Mitchell <mark@codesourcery.com>
2001-01-04 Mark Mitchell <mark@codesourcery.com>
* tree.c (copy_node): Remove documentation about obstacks.
* tree.c (copy_node): Remove documentation about obstacks.
...
...
gcc/gencodes.c
View file @
1fd4f141
...
@@ -57,16 +57,16 @@ output_predicate_decls ()
...
@@ -57,16 +57,16 @@ output_predicate_decls ()
static
struct
{
static
struct
{
const
char
*
name
;
const
char
*
name
;
RTX_CODE
codes
[
NUM_RTX_CODE
];
RTX_CODE
codes
[
NUM_RTX_CODE
];
}
*
p
,
predicate
[]
=
{
}
predicate
[]
=
{
PREDICATE_CODES
PREDICATE_CODES
{
NULL
,
{
0
}}
};
};
int
i
;
putc
(
'\n'
,
stdout
);
putc
(
'\n'
,
stdout
);
puts
(
"struct rtx_def;
\n
#include
\"
machmode.h
\"\n
"
);
puts
(
"struct rtx_def;
\n
#include
\"
machmode.h
\"\n
"
);
for
(
p
=
predicate
;
p
->
name
;
p
++
)
for
(
i
=
0
;
i
<
sizeof
predicate
/
sizeof
*
predicate
;
i
++
)
printf
(
"extern int %s PARAMS ((struct rtx_def *, enum machine_mode));
\n
"
,
printf
(
"extern int %s PARAMS ((struct rtx_def *, enum machine_mode));
\n
"
,
p
->
name
);
p
redicate
[
i
].
name
);
putc
(
'\n'
,
stdout
);
putc
(
'\n'
,
stdout
);
#endif
#endif
}
}
...
...
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