From 95f68aa7eb4835c0638d08e531483f891a373887 Mon Sep 17 00:00:00 2001 From: Anna Thomas Date: Mon, 25 Apr 2016 13:58:05 +0000 Subject: [PATCH] Test commit: modified comment. NFC llvm-svn: 267406 --- llvm/lib/Transforms/InstCombine/InstructionCombining.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/lib/Transforms/InstCombine/InstructionCombining.cpp b/llvm/lib/Transforms/InstCombine/InstructionCombining.cpp index ab6cd10..ddb866c 100644 --- a/llvm/lib/Transforms/InstCombine/InstructionCombining.cpp +++ b/llvm/lib/Transforms/InstCombine/InstructionCombining.cpp @@ -1901,7 +1901,7 @@ isAllocSiteRemovable(Instruction *AI, SmallVectorImpl &Users, ICmpInst *ICI = cast(I); // We can fold eq/ne comparisons with null to false/true, respectively. // We also fold comparisons in some conditions provided the alloc has - // not escaped. + // not escaped (see isNeverEqualToUnescapedAlloc). if (!ICI->isEquality()) return false; unsigned OtherIndex = (ICI->getOperand(0) == PI) ? 1 : 0; -- 2.7.4