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
3bd034d0
Commit
3bd034d0
authored
Oct 05, 2016
by
Jason Merrill
Committed by
Jason Merrill
Oct 05, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* parser.c (cp_parser_skip_to_end_of_statement): Add missing break.
From-SVN: r240809
parent
f8b6a488
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
3 additions
and
5 deletions
+3
-5
gcc/cp/ChangeLog
+2
-0
gcc/cp/call.c
+0
-1
gcc/cp/cxx-pretty-print.c
+0
-1
gcc/cp/parser.c
+1
-3
No files found.
gcc/cp/ChangeLog
View file @
3bd034d0
2016-10-05 Jason Merrill <jason@redhat.com>
* parser.c (cp_parser_skip_to_end_of_statement): Add missing break.
* semantics.c (finish_compound_literal): Handle class placeholder.
2016-10-05 Marek Polacek <polacek@redhat.com>
...
...
gcc/cp/call.c
View file @
3bd034d0
...
...
@@ -2544,7 +2544,6 @@ add_builtin_candidate (struct z_candidate **candidates, enum tree_code code,
type2
=
ptrdiff_type_node
;
break
;
}
/* XXX Really fallthru? */
/* FALLTHRU */
case
MULT_EXPR
:
case
TRUNC_DIV_EXPR
:
...
...
gcc/cp/cxx-pretty-print.c
View file @
3bd034d0
...
...
@@ -142,7 +142,6 @@ pp_cxx_unqualified_id (cxx_pretty_printer *pp, tree t)
case
OVERLOAD
:
t
=
OVL_CURRENT
(
t
);
/* XXX Really fallthru? */
/* FALLTHRU */
case
VAR_DECL
:
case
PARM_DECL
:
...
...
gcc/cp/parser.c
View file @
3bd034d0
...
...
@@ -3495,8 +3495,7 @@ cp_parser_skip_to_end_of_statement (cp_parser* parser)
cp_lexer_consume_token
(
parser
->
lexer
);
return
;
}
/* XXX Really fallthru? */
/* FALLTHRU */
break
;
case
CPP_OPEN_BRACE
:
++
nesting_depth
;
...
...
@@ -27932,7 +27931,6 @@ cp_parser_cache_defarg (cp_parser *parser, bool nsdmi)
parser
->
in_template_argument_list_p
=
saved_italp
;
break
;
}
/* XXX Really fallthru? */
/* FALLTHRU */
case
CPP_CLOSE_PAREN
:
case
CPP_ELLIPSIS
:
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