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
4f6788a1
Commit
4f6788a1
authored
Dec 07, 2015
by
Martin Liska
Committed by
Martin Liska
Dec 07, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix changelog entry and add pr66896.C.
From-SVN: r231365
parent
f3d6b759
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
26 additions
and
4 deletions
+26
-4
gcc/testsuite/ChangeLog
+4
-4
gcc/testsuite/g++.dg/ipa/pr66896.C
+22
-0
No files found.
gcc/testsuite/ChangeLog
View file @
4f6788a1
2015-12-07 Martin Liska <mliska@suse.cz>
* g++.dg/ipa/pr66896.C: New test.
2015-12-06 Dmitry Vyukov <dvyukov@google.com>
* gcc.dg/sancov/sancov.exp: Load asan-dg.exp.
...
...
@@ -10830,10 +10834,6 @@
PR rtl-optimization/66626
* gcc.target/i386/pr66626-2.c: New.
2015-07-16 Martin Liska <mliska@suse.cz>
* g++.dg/ipa/pr66896.c: New test.
2015-07-16 Richard Biener <rguenther@suse.de>
PR tree-optimization/66894
...
...
gcc/testsuite/g++.dg/ipa/pr66896.C
0 → 100644
View file @
4f6788a1
// PR ipa/66896
// { dg-do compile }
void
f2
(
void
*
);
void
f3
();
struct
A
{
int
*
a
;
A
();
~
A
()
{
a3
();
}
int
a1
(
int
*
p
)
{
if
(
!
p
)
f3
();
f2
(
p
);
}
void
a3
()
{
if
(
*
a
)
a1
(
a
);
}
};
struct
B
:
A
{
~
B
()
{
a3
();}};
struct
F
{};
struct
G
:
F
{
B
g
;};
void
foo
()
{
G
g
;}
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