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
35222de2
Commit
35222de2
authored
Oct 05, 2003
by
Kelley Cook
Committed by
R. Kelley Cook
Oct 05, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* builtins.c, jcf.h, jvspec.c: Remove PARAMS macros.
From-SVN: r72107
parent
790ca664
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
8 additions
and
4 deletions
+8
-4
gcc/java/ChangeLog
+4
-0
gcc/java/builtins.c
+1
-1
gcc/java/jcf.h
+1
-1
gcc/java/jvspec.c
+2
-2
No files found.
gcc/java/ChangeLog
View file @
35222de2
2003-10-03 Kelley Cook <kelleycook@wideopenwest.com>
* builtins.c, jcf.h, jvspec.c: Remove PARAMS macros.
2003-10-01 Andrew Haley <aph@redhat.com>
* jcf-parse.c (java_parse_file): Write otable and atable.
...
...
gcc/java/builtins.c
View file @
35222de2
...
...
@@ -50,7 +50,7 @@ static void define_builtin (enum built_in_function, const char *,
function should either return an expression, if the call is to be
inlined, or NULL_TREE if a real call should be emitted. Arguments
are method return type and arguments to call. */
typedef
tree
builtin_creator_function
PARAMS
((
tree
,
tree
)
);
typedef
tree
builtin_creator_function
(
tree
,
tree
);
/* Hold a char*, before initialization, or a tree, after
initialization. */
...
...
gcc/java/jcf.h
View file @
35222de2
...
...
@@ -73,7 +73,7 @@ jcf_open_exact_case (const char* filename, int oflag);
#endif
/* WIN32 */
struct
JCF
;
typedef
int
(
*
jcf_filbuf_t
)
PARAMS
((
struct
JCF
*
,
int
needed
)
);
typedef
int
(
*
jcf_filbuf_t
)
(
struct
JCF
*
,
int
needed
);
union
cpool_entry
GTY
(())
{
jword
GTY
((
tag
(
"0"
)))
w
;
...
...
gcc/java/jvspec.c
View file @
35222de2
...
...
@@ -48,8 +48,8 @@ The Free Software Foundation is independent of Sun Microsystems, Inc. */
/* True if this arg is a resource file. */
#define RESOURCE_FILE_ARG (1<<7)
static
char
*
find_spec_file
PARAMS
((
const
char
*
)
);
static
int
verify_class_name
PARAMS
((
const
char
*
)
);
static
char
*
find_spec_file
(
const
char
*
);
static
int
verify_class_name
(
const
char
*
);
static
const
char
*
main_class_name
=
NULL
;
int
lang_specific_extra_outfiles
=
0
;
...
...
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