dwarf-assembly/src/NativeSwitchCompiler.hpp

11 lines
297 B
C++

/** Compiles a SwitchStatement to a native C switch */
#include "SwitchStatement.hpp"
class NativeSwitchCompiler: public AbstractSwitchCompiler {
public:
NativeSwitchCompiler(const SwitchStatement& sw, int indent=0);
private:
virtual void to_stream(std::ostream& os);
};