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
cdb71673
Commit
cdb71673
authored
Nov 16, 2000
by
Nathan Sidwell
Committed by
Nathan Sidwell
Nov 16, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* call.c (op_error): Make error messages clearer.
From-SVN: r37498
parent
4c8fb571
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
6 deletions
+10
-6
gcc/cp/ChangeLog
+4
-0
gcc/cp/call.c
+6
-6
No files found.
gcc/cp/ChangeLog
View file @
cdb71673
2000-11-16 Nathan Sidwell <nathan@codesourcery.com>
* call.c (op_error): Make error messages clearer.
2000-11-15 Mark Mitchell <mark@codesourcery.com>
* decl.c (wrapup_globals_for_namespace): Don't mark things
...
...
gcc/cp/call.c
View file @
cdb71673
...
...
@@ -2714,7 +2714,7 @@ op_error (code, code2, arg1, arg2, arg3, problem)
tree
arg1
,
arg2
,
arg3
;
const
char
*
problem
;
{
const
char
*
opname
;
const
char
*
opname
;
if
(
code
==
MODIFY_EXPR
)
opname
=
assignment_operator_name_info
[
code2
].
name
;
...
...
@@ -2724,23 +2724,23 @@ op_error (code, code2, arg1, arg2, arg3, problem)
switch
(
code
)
{
case
COND_EXPR
:
cp_error
(
"%s for `%T ? %T : %T'"
,
problem
,
cp_error
(
"%s for `%T ? %T : %T'
operator
"
,
problem
,
error_type
(
arg1
),
error_type
(
arg2
),
error_type
(
arg3
));
break
;
case
POSTINCREMENT_EXPR
:
case
POSTDECREMENT_EXPR
:
cp_error
(
"%s for `%T
%s'
"
,
problem
,
error_type
(
arg1
),
opname
);
cp_error
(
"%s for `%T
%s' operator
"
,
problem
,
error_type
(
arg1
),
opname
);
break
;
case
ARRAY_REF
:
cp_error
(
"%s for `%T
[%T]'
"
,
problem
,
cp_error
(
"%s for `%T
[%T]' operator
"
,
problem
,
error_type
(
arg1
),
error_type
(
arg2
));
break
;
default
:
if
(
arg2
)
cp_error
(
"%s for `%T %s %T'"
,
problem
,
cp_error
(
"%s for `%T %s %T'
operator
"
,
problem
,
error_type
(
arg1
),
opname
,
error_type
(
arg2
));
else
cp_error
(
"%s for `%s
%T'
"
,
problem
,
opname
,
error_type
(
arg1
));
cp_error
(
"%s for `%s
%T' operator
"
,
problem
,
opname
,
error_type
(
arg1
));
}
}
...
...
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