From 1fcbb8fbf96b24ca7c16b993eccd68b0d61dc8a3 Mon Sep 17 00:00:00 2001 From: NAKAMURA Takumi Date: Mon, 19 Nov 2012 10:03:09 +0000 Subject: Promote the constant 1 to long long, 1LL or 1ULL in int64_t-sensitive context. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@168304 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/VMCore/Attributes.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/VMCore') diff --git a/lib/VMCore/Attributes.cpp b/lib/VMCore/Attributes.cpp index 5a552c3..68aa954 100644 --- a/lib/VMCore/Attributes.cpp +++ b/lib/VMCore/Attributes.cpp @@ -281,14 +281,14 @@ bool AttrBuilder::hasAlignmentAttr() const { uint64_t AttrBuilder::getAlignment() const { if (!hasAlignmentAttr()) return 0; - return 1U << + return 1ULL << (((Bits & AttributesImpl::getAttrMask(Attributes::Alignment)) >> 16) - 1); } uint64_t AttrBuilder::getStackAlignment() const { if (!hasAlignmentAttr()) return 0; - return 1U << + return 1ULL << (((Bits & AttributesImpl::getAttrMask(Attributes::StackAlignment))>>26)-1); } -- cgit v1.1