Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / third-party / benchmark / cmake / steady_clock.cpp
blob66d50d17e9e61f32cbe1df801906a5b8052ce279
1 #include <chrono>
3 int main() {
4 typedef std::chrono::steady_clock Clock;
5 Clock::time_point tp = Clock::now();
6 ((void)tp);