From fe78d295da1ac87cd7998dd796a1d0afc08df3a5 Mon Sep 17 00:00:00 2001 From: Aaron Ballman Date: Mon, 11 May 2015 12:45:53 +0000 Subject: [PATCH] Silencing an MSVC warning: '<<' : result of 32-bit shift implicitly converted to 64 bits (was 64-bit shift intended?); NFC git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@236987 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Target/SystemZ/SystemZISelLowering.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Target/SystemZ/SystemZISelLowering.cpp b/lib/Target/SystemZ/SystemZISelLowering.cpp index 99bf54c8345..24b5a41d7f6 100644 --- a/lib/Target/SystemZ/SystemZISelLowering.cpp +++ b/lib/Target/SystemZ/SystemZISelLowering.cpp @@ -3796,7 +3796,7 @@ static bool tryBuildVectorByteMask(BuildVectorSDNode *BVN, uint64_t &Mask) { for (unsigned J = 0; J < BytesPerElement; ++J) { uint64_t Byte = (Value >> (J * 8)) & 0xff; if (Byte == 0xff) - Mask |= 1 << ((E - I - 1) * BytesPerElement + J); + Mask |= 1ULL << ((E - I - 1) * BytesPerElement + J); else if (Byte != 0) return false; } -- 2.34.1