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 | d069a058917c5968774064354516f628159971c6 (patch) | |
tree | 9b20ddfd19dab7ec662d6ea53e7dedf8209bd5a6 /lib/Transforms/Scalar/InstructionCombining.cpp | |
parent | 1ba36b786d8c051e764fb39e0c2503ba1f19dc92 (diff) | |
download | external_llvm-d069a058917c5968774064354516f628159971c6.zip external_llvm-d069a058917c5968774064354516f628159971c6.tar.gz external_llvm-d069a058917c5968774064354516f628159971c6.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/InstructionCombining.cpp')
-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. |