diff options
author | Clement Courbet <courbet@google.com> | 2018-04-04 12:01:38 +0000 |
---|---|---|
committer | Clement Courbet <courbet@google.com> | 2018-04-04 12:01:38 +0000 |
commit | 3f20fee55cc17bdb8a5e10d2e6661701df42c424 (patch) | |
tree | 952b5ed060ac8e53670e9eac99e5dad8196dc4a6 /llvm/unittests/tools/llvm-exegesis | |
parent | 378d75ac17a960e12fe89b77ae50e135cb109f6b (diff) | |
download | bcm5719-llvm-3f20fee55cc17bdb8a5e10d2e6661701df42c424.tar.gz bcm5719-llvm-3f20fee55cc17bdb8a5e10d2e6661701df42c424.zip |
[llvm-exegesis][NFC] Fix a few warnings.
llvm-svn: 329174
Diffstat (limited to 'llvm/unittests/tools/llvm-exegesis')
-rw-r--r-- | llvm/unittests/tools/llvm-exegesis/BenchmarkResultTest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/unittests/tools/llvm-exegesis/BenchmarkResultTest.cpp b/llvm/unittests/tools/llvm-exegesis/BenchmarkResultTest.cpp index 577b956f68d..5b3277dc7e2 100644 --- a/llvm/unittests/tools/llvm-exegesis/BenchmarkResultTest.cpp +++ b/llvm/unittests/tools/llvm-exegesis/BenchmarkResultTest.cpp @@ -31,7 +31,7 @@ TEST(BenchmarkResultTest, WriteToAndReadFromDisk) { ToDisk.LLVMTriple = "llvm_triple"; ToDisk.NumRepetitions = 1; ToDisk.Measurements.push_back(BenchmarkMeasure{"a", 1, "debug a"}); - ToDisk.Measurements.push_back(BenchmarkMeasure{"b", 2}); + ToDisk.Measurements.push_back(BenchmarkMeasure{"b", 2, ""}); ToDisk.Error = "error"; const llvm::StringRef Filename("data.yaml"); |