summaryrefslogtreecommitdiff
path: root/lib/Transforms
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2009-09-08 03:47:41 +0000
committerChris Lattner <sabre@nondot.org>2009-09-08 03:47:41 +0000
commit687bc9bfde036e201712f23955bfd2f0564cd2d4 (patch)
tree9b20ddfd19dab7ec662d6ea53e7dedf8209bd5a6 /lib/Transforms
parent4cb81bdd5689a5bbe8c270c70f503c9d9779d5b1 (diff)
downloadllvm-687bc9bfde036e201712f23955bfd2f0564cd2d4.tar.gz
llvm-687bc9bfde036e201712f23955bfd2f0564cd2d4.tar.bz2
llvm-687bc9bfde036e201712f23955bfd2f0564cd2d4.tar.xz
remove a turd
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@81186 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms')
-rw-r--r--lib/Transforms/Scalar/InstructionCombining.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/Transforms/Scalar/InstructionCombining.cpp b/lib/Transforms/Scalar/InstructionCombining.cpp
index 17d75555c4..fcbb4d351d 100644
--- a/lib/Transforms/Scalar/InstructionCombining.cpp
+++ b/lib/Transforms/Scalar/InstructionCombining.cpp
@@ -12145,7 +12145,6 @@ Instruction *InstCombiner::visitExtractElementInst(ExtractElementInst &EI) {
return BinaryOperator::Create(BO->getOpcode(), newEI0, newEI1);
}
} else if (LoadInst *LI = dyn_cast<LoadInst>(I)) {
-// r25299
// Instead of loading a vector, then doing an extract element out of it,
// just bitcast the pointer operand, do a gep, then load the result.
// This shrinks the vector load to a scalar load.