repo.or.cz
/
llvm.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Verify the predicates on icmp/fcmp. Suggested by Jeff Yasskin!
[llvm.git]
/
test
/
FrontendC++
/
2003-08-27-TypeNamespaces.cpp
blob
dec97180a4206339535093d7142b16b44665f2ea
1
// RUN: %llvmgxx -S %s -o - | llvm-as -o /dev/null
2
3
4
namespace
foo
{
5
namespace
bar
{
6
struct
X
{
X
(); };
7
8
X
::
X
() {}
9
}
10
}
11
12
13
namespace
{
14
struct
Y
{
Y
(); };
15
Y
::
Y
() {}
16
}