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
f42cf4f4
Commit
f42cf4f4
authored
Mar 05, 2011
by
Jason Merrill
Committed by
Jason Merrill
Mar 05, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* doc/invoke.texi (C++ Dialect Options): Document ABI v5.
From-SVN: r170712
parent
55af847f
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
17 additions
and
3 deletions
+17
-3
gcc/ChangeLog
+4
-0
gcc/doc/invoke.texi
+4
-0
gcc/testsuite/ChangeLog
+6
-0
gcc/testsuite/g++.dg/abi/mangle39.C
+1
-1
gcc/testsuite/g++.dg/abi/mangle45.C
+1
-1
gcc/testsuite/g++.dg/cpp0x/trailing1.C
+1
-1
No files found.
gcc/ChangeLog
View file @
f42cf4f4
2011-03-05 Jason Merrill <jason@redhat.com>
* doc/invoke.texi (C++ Dialect Options): Document ABI v5.
2011-03-05 Anthony Green <green@moxielogic.com>
* config.gcc (moxie-*-elf): Add newlib-stdint.h to tmfile.
...
...
gcc/doc/invoke.texi
View file @
f42cf4f4
...
...
@@ -1846,6 +1846,10 @@ template argument.
Version
4
implements
a
standard
mangling
for
vector
types
.
Version
5
corrects
the
mangling
of
attribute
const
/
volatile
on
function
pointer
types
,
decltype
of
a
plain
decl
,
and
use
of
a
function
parameter
in
the
declaration
of
another
parameter
.
See
also
@
option
{-
Wabi
}.
@
item
-
fno
-
access
-
control
...
...
gcc/testsuite/ChangeLog
View file @
f42cf4f4
2011-03-05 Jason Merrill <jason@redhat.com>
* g++.dg/abi/mangle39.C: ABI v5, not 6.
* g++.dg/abi/mangle45.C: Likewise.
* g++.dg/cpp0x/trailing1.C: Likewise.
2011-03-05 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
* gcc.dg/torture/pr47975.c: Add -fno-common option on hppa*-*-hpux*.
...
...
gcc/testsuite/g++.dg/abi/mangle39.C
View file @
f42cf4f4
// PR c++/42338
// { dg-options "-std=c++0x -fabi-version=
6
" }
// { dg-options "-std=c++0x -fabi-version=
5
" }
// { dg-final { scan-assembler "_Z1fIPiEDTcmppfp_Li0EET_" } }
// { dg-final { scan-assembler "_Z1gIiEvRK1AIT_EDTixfL0p_Li0EE" } }
...
...
gcc/testsuite/g++.dg/abi/mangle45.C
View file @
f42cf4f4
// Testcase for mangling of parameters used other than in a trailing return type
// { dg-options "-std=c++0x -fabi-version=
6
" }
// { dg-options "-std=c++0x -fabi-version=
5
" }
template
<
class
T
>
void
f
(
T
p
,
decltype
(
p
))
{
}
// L = 1
template
<
class
T
>
void
g
(
T
p
,
decltype
(
p
)
(
*
)())
{
}
// L = 1
...
...
gcc/testsuite/g++.dg/cpp0x/trailing1.C
View file @
f42cf4f4
// Tests for late-specified return type.
// { dg-options "-std=c++0x -fabi-version=
6
" }
// { dg-options "-std=c++0x -fabi-version=
5
" }
auto
f
()
->
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