Skip to content

Commit 7e4e9f4

Browse files
committed
Fixed windows failure after D74873
Print format LaneBitmask was set as "%016lX" but should be "%016llX" for 64 bit support on Windows.
1 parent e1fb9d5 commit 7e4e9f4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llvm/include/llvm/MC/LaneBitmask.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ namespace llvm {
4040
// When changing the underlying type, change the format string as well.
4141
using Type = uint64_t;
4242
enum : unsigned { BitWidth = 8*sizeof(Type) };
43-
constexpr static const char *const FormatStr = "%016lX";
43+
constexpr static const char *const FormatStr = "%016llX";
4444

4545
constexpr LaneBitmask() = default;
4646
explicit constexpr LaneBitmask(Type V) : Mask(V) {}

0 commit comments

Comments
 (0)