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
a7ddca92
Commit
a7ddca92
authored
Apr 22, 2013
by
Jason Merrill
Committed by
Jason Merrill
Apr 22, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* mangle.c (write_type): Mangle decltype(auto).
From-SVN: r198150
parent
e973d6dd
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
20 additions
and
1 deletions
+20
-1
gcc/cp/ChangeLog
+4
-0
gcc/cp/mangle.c
+4
-1
gcc/testsuite/g++.dg/cpp1y/auto-mangle1.C
+12
-0
No files found.
gcc/cp/ChangeLog
View file @
a7ddca92
2013-04-22 Jason Merrill <jason@redhat.com>
* mangle.c (write_type): Mangle decltype(auto).
2013-04-19 Jason Merrill <jason@redhat.com>
N3638 changes to return type deduction
...
...
gcc/cp/mangle.c
View file @
a7ddca92
...
...
@@ -2019,7 +2019,10 @@ write_type (tree type)
case
TEMPLATE_TYPE_PARM
:
if
(
is_auto
(
type
))
{
write_identifier
(
"Da"
);
if
(
AUTO_IS_DECLTYPE
(
type
))
write_identifier
(
"Dc"
);
else
write_identifier
(
"Da"
);
++
is_builtin_type
;
break
;
}
...
...
gcc/testsuite/g++.dg/cpp1y/auto-mangle1.C
0 → 100644
View file @
a7ddca92
// Mangling for decltype(auto)
// { dg-options "-std=c++1y" }
void
f
();
// { dg-final { scan-assembler "_Z2g1IiEDcv" } }
template
<
class
T
>
decltype
(
auto
)
g1
()
{
return
&
f
;
}
template
decltype
(
auto
)
g1
<
int
>
();
// { dg-final { scan-assembler "_Z2g2IiEDav" } }
template
<
class
T
>
auto
g2
()
{
return
&
f
;
}
template
auto
g2
<
int
>
();
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