Deleted Added
full compact
3c3,5
< // The LLVM Compiler Infrastructure
---
> // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
> // See https://llvm.org/LICENSE.txt for license information.
> // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
5,7d6
< // This file is distributed under the University of Illinois Open Source
< // License. See LICENSE.TXT for details.
< //
38c37
< uintptr_t New = Old | (1UL << BitIdx);
---
> uintptr_t New = Old | (1ULL << BitIdx);
52c51
< return Map[WordIdx] & (1UL << BitIdx);
---
> return Map[WordIdx] & (1ULL << BitIdx);
68c67
< uintptr_t Map[kMapSizeInWords] __attribute__((aligned(512)));
---
> ATTRIBUTE_ALIGNED(512) uintptr_t Map[kMapSizeInWords];