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
3c503f9a
Commit
3c503f9a
authored
19 years ago
by
Tom Tromey
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
reverted erroneous commit
From-SVN: r101949
parent
309ca98d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
14 deletions
+8
-14
gcc/java/jvspec.c
+8
-14
No files found.
gcc/java/jvspec.c
View file @
3c503f9a
/* Specific flags and argument handling of the front-end of the
GNU compiler for the Java(TM) language.
Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004
, 2005
Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004
Free Software Foundation, Inc.
This file is part of GCC.
...
...
@@ -493,22 +493,11 @@ lang_specific_driver (int *in_argc, const char *const **in_argv,
arglist
=
xmalloc
((
num_args
+
1
)
*
sizeof
(
char
*
));
j
=
0
;
arglist
[
j
++
]
=
argv
[
0
];
if
(
combine_inputs
||
indirect_files_count
>
0
)
arglist
[
j
++
]
=
"-ffilelist-file"
;
if
(
combine_inputs
)
{
arglist
[
j
++
]
=
"-xjava"
;
arglist
[
j
++
]
=
filelist_filename
;
}
for
(
i
=
1
;
i
<
argc
;
i
++
,
j
++
)
for
(
i
=
0
;
i
<
argc
;
i
++
,
j
++
)
{
arglist
[
j
]
=
argv
[
i
];
if
((
args
[
i
]
&
PARAM_ARG
))
if
((
args
[
i
]
&
PARAM_ARG
)
||
i
==
0
)
continue
;
if
((
args
[
i
]
&
RESOURCE_FILE_ARG
)
!=
0
)
...
...
@@ -570,10 +559,15 @@ lang_specific_driver (int *in_argc, const char *const **in_argv,
}
}
if
(
combine_inputs
||
indirect_files_count
>
0
)
arglist
[
j
++
]
=
"-ffilelist-file"
;
if
(
combine_inputs
)
{
if
(
fclose
(
filelist_file
))
pfatal_with_name
(
filelist_filename
);
arglist
[
j
++
]
=
"-xjava"
;
arglist
[
j
++
]
=
filelist_filename
;
}
/* If we saw no -O or -g option, default to -g1, for javac compatibility. */
...
...
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