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
2e44948d
Commit
2e44948d
authored
Oct 20, 2000
by
David Edelsohn
Committed by
David Edelsohn
Oct 20, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* Use "because" instead of since in error messages.
From-SVN: r36977
parent
382110c0
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
14 additions
and
4 deletions
+14
-4
gcc/ChangeLog
+5
-0
gcc/cp/ChangeLog
+5
-0
gcc/cp/typeck2.c
+1
-1
gcc/gcc.c
+3
-3
No files found.
gcc/ChangeLog
View file @
2e44948d
2000-10-20 David Edelsohn <edelsohn@gnu.org>
* gcc.c (process_command, main): Use "because" instead of
"since" in error messages.
Fri Oct 20 13:33:16 2000 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
Fri Oct 20 13:33:16 2000 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
* stor-layout.c (compute_record_mode): Use tree_low_cst.
* stor-layout.c (compute_record_mode): Use tree_low_cst.
...
...
gcc/cp/ChangeLog
View file @
2e44948d
2000-10-20 David Edelsohn <edelsohn@gnu.org>
* typeck2.c (abstract_virtuals_error): Use "because" instead of
"since" in error message.
Fri Oct 20 13:54:59 2000 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
Fri Oct 20 13:54:59 2000 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
* typeck.c (dubious_conversion_warning): Suppress if TYPE_IS_SIZETYPE.
* typeck.c (dubious_conversion_warning): Suppress if TYPE_IS_SIZETYPE.
...
...
gcc/cp/typeck2.c
View file @
2e44948d
...
@@ -168,7 +168,7 @@ abstract_virtuals_error (decl, type)
...
@@ -168,7 +168,7 @@ abstract_virtuals_error (decl, type)
{
{
TREE_PURPOSE
(
u
)
=
error_mark_node
;
TREE_PURPOSE
(
u
)
=
error_mark_node
;
error
(
"
sinc
e the following virtual functions are abstract:"
);
error
(
"
becaus
e the following virtual functions are abstract:"
);
for
(
tu
=
u
;
tu
;
tu
=
TREE_CHAIN
(
tu
))
for
(
tu
=
u
;
tu
;
tu
=
TREE_CHAIN
(
tu
))
cp_error_at
(
"
\t
%#D"
,
TREE_VALUE
(
tu
));
cp_error_at
(
"
\t
%#D"
,
TREE_VALUE
(
tu
));
}
}
...
...
gcc/gcc.c
View file @
2e44948d
...
@@ -3595,11 +3595,11 @@ process_command (argc, argv)
...
@@ -3595,11 +3595,11 @@ process_command (argc, argv)
{
{
/* -save-temps overrides -pipe, so that temp files are produced */
/* -save-temps overrides -pipe, so that temp files are produced */
if
(
save_temps_flag
)
if
(
save_temps_flag
)
error
(
"Warning: -pipe ignored
sinc
e -save-temps specified"
);
error
(
"Warning: -pipe ignored
becaus
e -save-temps specified"
);
/* -time overrides -pipe because we can't get correct stats when
/* -time overrides -pipe because we can't get correct stats when
multiple children are running at once. */
multiple children are running at once. */
else
if
(
report_times
)
else
if
(
report_times
)
error
(
"Warning: -pipe ignored
sinc
e -time specified"
);
error
(
"Warning: -pipe ignored
becaus
e -time specified"
);
}
}
else
if
(
argv
[
i
][
0
]
==
'-'
&&
argv
[
i
][
1
]
!=
0
)
else
if
(
argv
[
i
][
0
]
==
'-'
&&
argv
[
i
][
1
]
!=
0
)
{
{
...
@@ -5636,7 +5636,7 @@ main (argc, argv)
...
@@ -5636,7 +5636,7 @@ main (argc, argv)
if
(
!
linker_was_run
&&
error_count
==
0
)
if
(
!
linker_was_run
&&
error_count
==
0
)
for
(
i
=
0
;
(
int
)
i
<
n_infiles
;
i
++
)
for
(
i
=
0
;
(
int
)
i
<
n_infiles
;
i
++
)
if
(
explicit_link_files
[
i
])
if
(
explicit_link_files
[
i
])
error
(
"%s: linker input file unused
sinc
e linking not done"
,
error
(
"%s: linker input file unused
becaus
e linking not done"
,
outfiles
[
i
]);
outfiles
[
i
]);
/* Delete some or all of the temporary files we made. */
/* Delete some or all of the temporary files we made. */
...
...
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