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
c1f8423c
Commit
c1f8423c
authored
Feb 05, 2010
by
Jason Merrill
Committed by
Jason Merrill
Feb 05, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* g++.dg/ext/label13.C: Move constructor body out of class.
From-SVN: r156530
parent
b2469a9b
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
4 deletions
+10
-4
gcc/testsuite/ChangeLog
+4
-0
gcc/testsuite/g++.dg/ext/label13.C
+6
-4
No files found.
gcc/testsuite/ChangeLog
View file @
c1f8423c
2010-02-05 Jason Merrill <jason@redhat.com>
* g++.dg/ext/label13.C: Move constructor body out of class.
2010-02-03 Jason Merrill <jason@redhat.com>
2010-02-03 Jason Merrill <jason@redhat.com>
PR c++/42870
PR c++/42870
...
...
gcc/testsuite/g++.dg/ext/label13.C
View file @
c1f8423c
...
@@ -5,13 +5,15 @@
...
@@ -5,13 +5,15 @@
int
i
;
int
i
;
struct
C
struct
C
{
{
C
()
C
();
{
};
C
::
C
()
{
static
void
*
labelref
=
&&
label
;
static
void
*
labelref
=
&&
label
;
goto
*
labelref
;
goto
*
labelref
;
label
:
i
=
1
;
label
:
i
=
1
;
}
}
};
int
main
()
int
main
()
{
{
...
...
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