X86MCInstLower::Lower should only not emit anything to OutStreamer,
[llvm/avr.git] / test / FrontendC++ / 2006-03-06-C++RecurseCrash.cpp
blob2fb3fb7cdc2584b3e52d9c21cddca1a19d589ce6
1 // RUN: %llvmgcc %s -S -o -
2 namespace std {
3 class exception { };
5 class type_info {
6 public:
7 virtual ~type_info();
8 };
12 namespace __cxxabiv1 {
13 class __si_class_type_info : public std::type_info {
14 ~__si_class_type_info();
18 class recursive_init: public std::exception {
19 public:
20 virtual ~recursive_init() throw ();
23 recursive_init::~recursive_init() throw() { }