diff options
author | Chris Lattner <sabre@nondot.org> | 2009-09-08 03:47:41 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-09-08 03:47:41 +0000 |
commit | 687bc9bfde036e201712f23955bfd2f0564cd2d4 (patch) | |
tree | 9b20ddfd19dab7ec662d6ea53e7dedf8209bd5a6 /lib/Transforms/Scalar | |
parent | 4cb81bdd5689a5bbe8c270c70f503c9d9779d5b1 (diff) | |
download | external_llvm-687bc9bfde036e201712f23955bfd2f0564cd2d4.zip external_llvm-687bc9bfde036e201712f23955bfd2f0564cd2d4.tar.gz external_llvm-687bc9bfde036e201712f23955bfd2f0564cd2d4.tar.bz2 |
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/Scalar')
-rw-r--r-- | lib/Transforms/Scalar/InstructionCombining.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/Transforms/Scalar/InstructionCombining.cpp b/lib/Transforms/Scalar/InstructionCombining.cpp index 17d7555..fcbb4d3 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. |