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
658269bd
Commit
658269bd
authored
Dec 05, 1998
by
Alexandre Oliva
Committed by
Alexandre Oliva
Dec 05, 1998
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* g++.old-deja/g++.eh/tmpl2.C: New test.
From-SVN: r24112
parent
4bd75896
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
37 additions
and
0 deletions
+37
-0
gcc/testsuite/ChangeLog
+4
-0
gcc/testsuite/g++.old-deja/g++.eh/tmpl2.C
+33
-0
No files found.
gcc/testsuite/ChangeLog
View file @
658269bd
1998-12-06 Alexandre Oliva <oliva@dcc.unicamp.br>
* g++.old-deja/g++.eh/tmpl2.C: New test.
1998-12-04 Alexandre Oliva <oliva@dcc.unicamp.br>
1998-12-04 Alexandre Oliva <oliva@dcc.unicamp.br>
* g++.old-deja/g++.other/using5.C: usified using[567].C here
* g++.old-deja/g++.other/using5.C: usified using[567].C here
...
...
gcc/testsuite/g++.old-deja/g++.eh/tmpl2.C
0 → 100644
View file @
658269bd
// Build don't link:
// Special g++ flags: -O
// crash test - XFAIL i*86-*-linux*
// Posted by H. J. Lu <hjl@lucon.org>
template
<
class
T
>
class
FixSeq
{
public
:
void
append
(
const
T
&
);
};
class
foo
{
public
:
void
setupIR
();
};
typedef
FixSeq
<
foo
*>
bar
;
extern
void
dummy
(
foo
*
);
void
*
foobar
(
bar
&
x
,
foo
*
p
)
{
try
{
p
->
setupIR
();
}
catch
(...)
{
dummy
(
p
);
}
x
.
append
(
p
);
return
p
;
}
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