forked from OSchip/llvm-project
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:
parent
e1fb9d5372
commit
7e4e9f4a2f
|
@ -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) {}
|
||||
|
|
Loading…
Reference in New Issue