This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from b4c99dd [DAGCombiner] Add general constant vector support to (srl (sh [...] new 911bb94 Reapply "Add Chrono.h - std::chrono support header"
The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: include/llvm/Support/Chrono.h | 55 ++++++++++++++++++++++++++ include/llvm/Support/TimeValue.h | 11 ++++++ lib/Support/CMakeLists.txt | 1 + lib/Support/Chrono.cpp | 47 ++++++++++++++++++++++ lib/Support/TimeValue.cpp | 17 ++++---- lib/Support/Unix/TimeValue.inc | 54 ------------------------- lib/Support/Windows/TimeValue.inc | 61 ---------------------------- unittests/Support/CMakeLists.txt | 1 + unittests/Support/Chrono.cpp | 79 +++++++++++++++++++++++++++++++++++++ unittests/Support/TimeValueTest.cpp | 10 +++++ 10 files changed, 212 insertions(+), 124 deletions(-) create mode 100644 include/llvm/Support/Chrono.h create mode 100644 lib/Support/Chrono.cpp delete mode 100644 lib/Support/Unix/TimeValue.inc delete mode 100644 lib/Support/Windows/TimeValue.inc create mode 100644 unittests/Support/Chrono.cpp