mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-01 00:11:00 +00: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. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@120721 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
30e2128a73
commit
ee3a428e0f
@ -1,12 +0,0 @@
|
||||
// RUN: %llvmgcc -xc++ -S -o - %s | grep {struct.X::Y}
|
||||
struct X {
|
||||
|
||||
struct Y {
|
||||
Y();
|
||||
};
|
||||
|
||||
};
|
||||
|
||||
X::Y::Y() {
|
||||
|
||||
}
|
Loading…
Reference in New Issue
Block a user