[Alignment][NFC] Use Align with TargetLowering::setMinFunctionAlignment
[llvm-core.git] / utils / 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);