diff options
author | Michael J. Spencer <bigcheesegs@gmail.com> | 2013-01-13 16:00:51 +0000 |
---|---|---|
committer | Michael J. Spencer <bigcheesegs@gmail.com> | 2013-01-13 16:00:51 +0000 |
commit | a5bec298d96f7eb5309df5aab9d19eb7f8b75a81 (patch) | |
tree | 834697342bb707d32faf54f8aa7f7bdd2af54d64 /include/clang/Basic/SourceManager.h | |
parent | 1774603d8b34f86bd254d85a125592fcb323a488 (diff) |
Fix LLP64 build.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@172357 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Basic/SourceManager.h')
-rw-r--r-- | include/clang/Basic/SourceManager.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/clang/Basic/SourceManager.h b/include/clang/Basic/SourceManager.h index ec8f533dc1..d9b21ce60d 100644 --- a/include/clang/Basic/SourceManager.h +++ b/include/clang/Basic/SourceManager.h @@ -271,7 +271,7 @@ namespace SrcMgr { return SourceLocation::getFromRawEncoding(IncludeLoc); } const ContentCache* getContentCache() const { - return reinterpret_cast<const ContentCache*>(Data & ~7UL); + return reinterpret_cast<const ContentCache*>(Data & ~uintptr_t(7)); } /// \brief Return whether this is a system header or not. |