From d2c50408d42f718c305a46c9cc6503d9156ea4d9 Mon Sep 17 00:00:00 2001 From: Dean Michael Berris Date: Tue, 11 Sep 2018 06:36:51 +0000 Subject: [XRay] Add TSC to NewCPUId Records Summary: This more correctly reflects the data written by the FDR mode runtime. This is a continuation of the work in D50441. Reviewers: mboerger, eizan Subscribers: hiraditya, llvm-commits Differential Revision: https://reviews.llvm.org/D51911 llvm-svn: 341905 --- llvm/unittests/XRay/FDRRecordPrinterTest.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'llvm/unittests/XRay/FDRRecordPrinterTest.cpp') diff --git a/llvm/unittests/XRay/FDRRecordPrinterTest.cpp b/llvm/unittests/XRay/FDRRecordPrinterTest.cpp index f4cebf8d1f4..339d4b0d428 100644 --- a/llvm/unittests/XRay/FDRRecordPrinterTest.cpp +++ b/llvm/unittests/XRay/FDRRecordPrinterTest.cpp @@ -39,10 +39,10 @@ template <> struct Helper { template <> struct Helper { static std::unique_ptr construct() { - return make_unique(1); + return make_unique(1, 2); } - static const char *expected() { return ""; } + static const char *expected() { return ""; } }; template <> struct Helper { -- cgit v1.2.3