repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Dead
[official-gcc.git]
/
gomp-20050608-branch
/
gcc
/
testsuite
/
g++.old-deja
/
g++.robertl
/
eb123.C
blob
cb4505f7e0b65627971b203bebc60a87126c52cd
1
// { dg-do assemble }
2
// { dg-options "-O2 -W " }
3
#include "stdio.h"
4
5
void writeNote() throw( int )
6
{
7
printf( "hello world\n" );
8
try { }
9
catch( int ){ throw; }
10
}