diff options
| author | Eli Friedman <eli.friedman@gmail.com> | 2009-05-23 22:44:52 +0000 |
|---|---|---|
| committer | Eli Friedman <eli.friedman@gmail.com> | 2009-05-23 22:44:52 +0000 |
| commit | 2199ed399f91d1ba0525ed474b96f3566cea447c (patch) | |
| tree | 13cc3d38b51d5d4d8434dfe0fef1313bed6f67e4 | |
| parent | 40afdb63ecc96c8fa84dc0ae18557d8fc5be18ef (diff) | |
| download | bcm5719-llvm-2199ed399f91d1ba0525ed474b96f3566cea447c.tar.gz bcm5719-llvm-2199ed399f91d1ba0525ed474b96f3566cea447c.zip | |
Make the X86 backend mark EXTRACT_SUBVECTOR as Expand, at least for the
moment.
llvm-svn: 72350
| -rw-r--r-- | llvm/lib/Target/X86/X86ISelLowering.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/Target/X86/X86ISelLowering.cpp b/llvm/lib/Target/X86/X86ISelLowering.cpp index fda8cba2a1a..a1a95a50dc4 100644 --- a/llvm/lib/Target/X86/X86ISelLowering.cpp +++ b/llvm/lib/Target/X86/X86ISelLowering.cpp @@ -557,6 +557,7 @@ X86TargetLowering::X86TargetLowering(X86TargetMachine &TM) setOperationAction(ISD::LOAD, (MVT::SimpleValueType)VT, Expand); setOperationAction(ISD::VECTOR_SHUFFLE, (MVT::SimpleValueType)VT, Expand); setOperationAction(ISD::EXTRACT_VECTOR_ELT,(MVT::SimpleValueType)VT,Expand); + setOperationAction(ISD::EXTRACT_SUBVECTOR,(MVT::SimpleValueType)VT,Expand); setOperationAction(ISD::INSERT_VECTOR_ELT,(MVT::SimpleValueType)VT, Expand); setOperationAction(ISD::FABS, (MVT::SimpleValueType)VT, Expand); setOperationAction(ISD::FSIN, (MVT::SimpleValueType)VT, Expand); |

