mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-03 14:08:57 +00:00
5684229a45
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@81038 91177308-0d34-0410-b5e6-96231b3b80d8
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(){}
|