diff options
Diffstat (limited to 'llvm/unittests/ProfileData/InstrProfTest.cpp')
-rw-r--r-- | llvm/unittests/ProfileData/InstrProfTest.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/llvm/unittests/ProfileData/InstrProfTest.cpp b/llvm/unittests/ProfileData/InstrProfTest.cpp index f0710e77fce..13d1e059cd2 100644 --- a/llvm/unittests/ProfileData/InstrProfTest.cpp +++ b/llvm/unittests/ProfileData/InstrProfTest.cpp @@ -55,9 +55,7 @@ struct SparseInstrProfTest : public InstrProfTest { struct MaybeSparseInstrProfTest : public InstrProfTest, public ::testing::WithParamInterface<bool> { - void SetUp() { - Writer.setOutputSparse(GetParam()); - } + void SetUp() { Writer.setOutputSparse(GetParam()); } }; TEST_P(MaybeSparseInstrProfTest, write_and_read_empty_profile) { |