mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 10:42:39 +01:00
14 lines
301 B
C++
14 lines
301 B
C++
|
#include "benchmark/benchmark.h"
|
||
|
#include "llvm/Support/YAMLTraits.h"
|
||
|
|
||
|
static void BM_YAMLDummyIsNumeric(benchmark::State& state) {
|
||
|
std::string x = "hello";
|
||
|
for (auto _ : state) {
|
||
|
std::string copy(x);
|
||
|
llvm::yaml::isNumeric(copy);
|
||
|
}
|
||
|
}
|
||
|
BENCHMARK(BM_YAMLDummyIsNumeric);
|
||
|
|
||
|
BENCHMARK_MAIN();
|