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
c10f4193
Commit
c10f4193
authored
Apr 22, 2013
by
Jason Merrill
Committed by
Jason Merrill
Apr 22, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Core 1609
Core 1609 * decl2.c (check_default_args): Check for pack expansion. From-SVN: r198152
parent
a7ddca92
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
13 additions
and
1 deletions
+13
-1
gcc/cp/ChangeLog
+3
-0
gcc/cp/decl2.c
+1
-1
gcc/testsuite/g++.dg/cpp0x/variadic142.C
+9
-0
No files found.
gcc/cp/ChangeLog
View file @
c10f4193
2013-04-22 Jason Merrill <jason@redhat.com>
Core 1609
* decl2.c (check_default_args): Check for pack expansion.
* mangle.c (write_type): Mangle decltype(auto).
2013-04-19 Jason Merrill <jason@redhat.com>
...
...
gcc/cp/decl2.c
View file @
c10f4193
...
...
@@ -4463,7 +4463,7 @@ check_default_args (tree x)
{
if
(
TREE_PURPOSE
(
arg
))
saw_def
=
true
;
else
if
(
saw_def
)
else
if
(
saw_def
&&
!
PACK_EXPANSION_P
(
TREE_VALUE
(
arg
))
)
{
error
(
"default argument missing for parameter %P of %q+#D"
,
i
,
x
);
TREE_PURPOSE
(
arg
)
=
error_mark_node
;
...
...
gcc/testsuite/g++.dg/cpp0x/variadic142.C
0 → 100644
View file @
c10f4193
// Core 1609
// { dg-require-effective-target c++11 }
template
<
typename
...
T
>
void
f2
(
int
a
=
0
,
T
...
b
,
int
c
=
1
);
int
main
(){
f2
<>
();
// parameter a has the value 0 and parameter c has the value 1
}
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