summaryrefslogtreecommitdiff
path: root/lib/Transforms
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2010-11-30 22:18:11 +0000
committerChris Lattner <sabre@nondot.org>2010-11-30 22:18:11 +0000
commitfcf8d7c73d7517e26f9f9d1a9af22ad4314e4984 (patch)
tree08570d877f0ccfcc0edd968eae5317fa32fc1a42 /lib/Transforms
parent7c80c15a8bc5ac24b1c7651344a22d62e4308c14 (diff)
downloadllvm-fcf8d7c73d7517e26f9f9d1a9af22ad4314e4984.tar.gz
llvm-fcf8d7c73d7517e26f9f9d1a9af22ad4314e4984.tar.bz2
llvm-fcf8d7c73d7517e26f9f9d1a9af22ad4314e4984.tar.xz
remove a fixed fixme
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@120474 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms')
-rw-r--r--lib/Transforms/Scalar/GVN.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/Transforms/Scalar/GVN.cpp b/lib/Transforms/Scalar/GVN.cpp
index 6d35db4d6f..6e8521b77f 100644
--- a/lib/Transforms/Scalar/GVN.cpp
+++ b/lib/Transforms/Scalar/GVN.cpp
@@ -1045,8 +1045,6 @@ static int AnalyzeLoadFromClobberingWrite(const Type *LoadTy, Value *LoadPtr,
// If the load and store don't overlap at all, the store doesn't provide
// anything to the load. In this case, they really don't alias at all, AA
// must have gotten confused.
- // FIXME: Investigate cases where this bails out, e.g. rdar://7238614. Then
- // remove this check, as it is duplicated with what we have below.
uint64_t LoadSize = TD.getTypeSizeInBits(LoadTy);
if ((WriteSizeInBits & 7) | (LoadSize & 7))