diff options
author | Gerolf Hoflehner <ghoflehner@apple.com> | 2016-01-30 05:58:38 +0000 |
---|---|---|
committer | Gerolf Hoflehner <ghoflehner@apple.com> | 2016-01-30 05:58:38 +0000 |
commit | d24671f880ff705323143790d18567f319d7e186 (patch) | |
tree | 067d6343d564066944cfd51592396bc057bba13b | |
parent | 87ddb65fa6633c55d73f8be546b9ea286238536d (diff) | |
download | bcm5719-llvm-d24671f880ff705323143790d18567f319d7e186.tar.gz bcm5719-llvm-d24671f880ff705323143790d18567f319d7e186.zip |
[BasicAA] NFC - revised comment for function adjustToPointerSize()
llvm-svn: 259300
-rw-r--r-- | llvm/lib/Analysis/BasicAliasAnalysis.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Analysis/BasicAliasAnalysis.cpp b/llvm/lib/Analysis/BasicAliasAnalysis.cpp index ca4c1bfc45f..2d92da15a24 100644 --- a/llvm/lib/Analysis/BasicAliasAnalysis.cpp +++ b/llvm/lib/Analysis/BasicAliasAnalysis.cpp @@ -323,7 +323,7 @@ static bool isObjectSize(const Value *V, uint64_t Size, const DataLayout &DL, /// To ensure a pointer offset fits in an integer of size PointerSize /// (in bits) when that size is smaller than 64. This is an issue in /// particular for 32b programs with negative indices that rely on two's -/// complement wrap-arounds for correct alias information. +/// complement wrap-arounds for precise alias information. static int64_t adjustToPointerSize(int64_t Offset, unsigned PointerSize) { assert(PointerSize <= 64 && "Invalid PointerSize!"); unsigned ShiftBits = 64 - PointerSize; |