diff options
-rw-r--r-- | lib/Target/X86/X86ISelPattern.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/lib/Target/X86/X86ISelPattern.cpp b/lib/Target/X86/X86ISelPattern.cpp index bd06077215..fe56208f00 100644 --- a/lib/Target/X86/X86ISelPattern.cpp +++ b/lib/Target/X86/X86ISelPattern.cpp @@ -49,7 +49,11 @@ namespace { addRegisterClass(MVT::f32, X86::RFPRegisterClass); computeRegisterProperties(); - + + setOperationUnsupported(ISD::MEMSET, MVT::Other); + setOperationUnsupported(ISD::MEMCPY, MVT::Other); + setOperationUnsupported(ISD::MEMMOVE, MVT::Other); + setOperationUnsupported(ISD::MUL, MVT::i8); setOperationUnsupported(ISD::SELECT, MVT::i1); setOperationUnsupported(ISD::SELECT, MVT::i8); |