1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 11:02:59 +02:00

This test dates from the time when llvm-gcc had problems if two types were

named the same, so it had to qualify type names according to the enclosing
scope to ensure uniqueness.  This is no longer needed for correctness (though
it may be helpful when reading the IR), so this test has lost its importance.
Zap it because dragonegg will never be able to produce the qualified type name
since modern gcc zaps language specific info (such as whether a type is nested
inside another - needed to get X::Y here) before dragonegg is reached.

llvm-svn: 120721
This commit is contained in:
Duncan Sands 2010-12-02 18:19:23 +00:00
parent 08f52108b1
commit 84bd43844e

View File

@ -1,12 +0,0 @@
// RUN: %llvmgcc -xc++ -S -o - %s | grep {struct.X::Y}
struct X {
struct Y {
Y();
};
};
X::Y::Y() {
}