diff options
author | Evan Cheng <evan.cheng@apple.com> | 2008-05-24 00:07:06 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2008-05-24 00:07:06 +0000 |
commit | 3cc8f9bfefb10dd361b903b0be89751d17aa15ef (patch) | |
tree | 868b6547755d2ae3857465a3b384d7d038153eeb /lib | |
parent | 2307a7f0cfe0f0a5261175849d928bd9e4b78c0f (diff) |
Remove x86.sse2.loadh.pd and x86.sse2.loadl.pd. These will be lowered into load and shuffle instructions.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@51521 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Transforms/Scalar/LoopStrengthReduce.cpp | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/lib/Transforms/Scalar/LoopStrengthReduce.cpp b/lib/Transforms/Scalar/LoopStrengthReduce.cpp index c65b83e9a5..ad3d9d2ca4 100644 --- a/lib/Transforms/Scalar/LoopStrengthReduce.cpp +++ b/lib/Transforms/Scalar/LoopStrengthReduce.cpp @@ -1119,11 +1119,6 @@ static bool isAddressUse(Instruction *Inst, Value *OperandVal) { if (II->getOperand(1) == OperandVal) isAddress = true; break; - case Intrinsic::x86_sse2_loadh_pd: - case Intrinsic::x86_sse2_loadl_pd: - if (II->getOperand(2) == OperandVal) - isAddress = true; - break; } } return isAddress; |