This should always be signed chars, so use int8_t. This fixes a miscompile when
[llvm/stm8.git] / test / FrontendC++ / 2009-09-04-modify-crash.cpp
blob89274e09c7ed2719f8e52cde8e5c958488a5f2f7
1 // RUN: %llvmgxx %s -fapple-kext -S -o -
2 // The extra check in 71555 caused this to crash on Darwin X86
3 // in an assert build.
4 class foo {
5 virtual ~foo ();
6 };
7 foo::~foo(){}