mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 16:33:37 +01:00
e5f313b4ee
llvm-svn: 81038
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(){}
|