Fixed windows failure after D74873

Print format LaneBitmask was set as "%016lX" but should be
"%016llX" for 64 bit support on Windows.
This commit is contained in:
Stanislav Mekhanoshin 2020-03-31 13:40:09 -07:00
parent e1fb9d5372
commit 7e4e9f4a2f
1 changed files with 1 additions and 1 deletions

View File

@ -40,7 +40,7 @@ namespace llvm {
// When changing the underlying type, change the format string as well.
using Type = uint64_t;
enum : unsigned { BitWidth = 8*sizeof(Type) };
constexpr static const char *const FormatStr = "%016lX";
constexpr static const char *const FormatStr = "%016llX";
constexpr LaneBitmask() = default;
explicit constexpr LaneBitmask(Type V) : Mask(V) {}