mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-02 00:42:52 +01:00
8 lines
185 B
C++
8 lines
185 B
C++
|
// RUN: %llvmgxx %s -emit-llvm -fapple-kext -S -o -
|
||
|
// The extra check in 71555 caused this to crash on Darwin X86
|
||
|
// in an assert build.
|
||
|
class foo {
|
||
|
virtual ~foo ();
|
||
|
};
|
||
|
foo::~foo(){}
|