[LLDB] Adjust DumpDataExtractorTest.Formats for Windows

Floating point results mismtach between Visual stdio 2019 and previous
versions. This adjusts macro accordingly.
This commit is contained in:
Muhammad Omair Javaid 2021-11-04 08:44:29 +05:00
parent a84118756c
commit 553a872465
1 changed files with 1 additions and 1 deletions

View File

@ -187,7 +187,7 @@ TEST(DumpDataExtractorTest, Formats) {
// Some normal numbers.
TestDump(std::vector<uint16_t>{0b0100001001001000},
lldb::Format::eFormatVectorOfFloat16,
#ifdef _WIN32
#if defined(_MSC_VER) && _MSC_VER < 1920
// FIXME: This should print the same on all platforms.
"{3.14063}");
#else