diff options
author | Wei Mi <wmi@google.com> | 2018-06-12 05:53:49 +0000 |
---|---|---|
committer | Wei Mi <wmi@google.com> | 2018-06-12 05:53:49 +0000 |
commit | d9be2c7e64a28f359433942f57756a6408ca023c (patch) | |
tree | 9fa75c8725a2883d29946b8e970afc864fc03327 /llvm/unittests/ProfileData/SampleProfTest.cpp | |
parent | 432db3b43b811f2b13286d7e0dac3284a7815335 (diff) | |
download | bcm5719-llvm-d9be2c7e64a28f359433942f57756a6408ca023c.tar.gz bcm5719-llvm-d9be2c7e64a28f359433942f57756a6408ca023c.zip |
[NFC] Change sample profile format enum name SPF_Raw_Binary to SPF_Binary.
Some out-of-tree targets depend on the enum name SPF_Binary. Keep the name
can avoid unnecessary churn to those targets.
llvm-svn: 334476
Diffstat (limited to 'llvm/unittests/ProfileData/SampleProfTest.cpp')
-rw-r--r-- | llvm/unittests/ProfileData/SampleProfTest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/unittests/ProfileData/SampleProfTest.cpp b/llvm/unittests/ProfileData/SampleProfTest.cpp index bc19eb5f07c..3ebfd0e500f 100644 --- a/llvm/unittests/ProfileData/SampleProfTest.cpp +++ b/llvm/unittests/ProfileData/SampleProfTest.cpp @@ -180,7 +180,7 @@ TEST_F(SampleProfTest, roundtrip_text_profile) { } TEST_F(SampleProfTest, roundtrip_raw_binary_profile) { - testRoundTrip(SampleProfileFormat::SPF_Raw_Binary); + testRoundTrip(SampleProfileFormat::SPF_Binary); } TEST_F(SampleProfTest, roundtrip_compact_binary_profile) { |