mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-13 20:32:21 +00: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(){}
|