remove a fixed fixme
authorChris Lattner <sabre@nondot.org>
Tue, 30 Nov 2010 22:18:11 +0000 (22:18 +0000)
committerChris Lattner <sabre@nondot.org>
Tue, 30 Nov 2010 22:18:11 +0000 (22:18 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@120474 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Transforms/Scalar/GVN.cpp

index 6d35db4d6f7c36fd674353c4a8066ab892a21fcc..6e8521b77f8eaf9d93d39a711b7f22010c614334 100644 (file)
@@ -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))