dwarf-assembly/benching/benchlib/bench.cpp
2018-06-04 14:46:55 +02:00

13 lines
231 B
C++

#include "bench.h"
#include <iostream>
#include "DwBenchmark.hpp"
void bench_unwinding() {
DwBenchmark::get_instance().unwind_measure();
}
void bench_dump_data() {
DwBenchmark::get_instance().format_output(std::cout);
}