summaryrefslogtreecommitdiffstats
path: root/llvm/lib
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
commit50162e3c2a09fe28c46e4822b677835f3fc8150b (patch)
tree5e853deb5edd80e252ab838b3cf9b2d938f2515b /llvm/lib
parentf5a998643c4fc5647cf8313abfad2cd3bf61ae97 (diff)
downloadbcm5719-llvm-50162e3c2a09fe28c46e4822b677835f3fc8150b.tar.gz
bcm5719-llvm-50162e3c2a09fe28c46e4822b677835f3fc8150b.zip
remove a fixed fixme
llvm-svn: 120474
Diffstat (limited to 'llvm/lib')
-rw-r--r--llvm/lib/Transforms/Scalar/GVN.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/llvm/lib/Transforms/Scalar/GVN.cpp b/llvm/lib/Transforms/Scalar/GVN.cpp
index 6d35db4d6f7..6e8521b77f8 100644
--- a/llvm/lib/Transforms/Scalar/GVN.cpp
+++ b/llvm/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))
OpenPOWER on IntegriCloud