From: Chris Lattner Date: Tue, 11 Jan 2005 05:57:36 +0000 (+0000) Subject: Announce that we don't support mem ops yet. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=795069dd38a4cdd67ade77c68117be7d8c9d3b27;p=oota-llvm.git Announce that we don't support mem ops yet. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19466 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Target/X86/X86ISelPattern.cpp b/lib/Target/X86/X86ISelPattern.cpp index bd060772158..fe56208f009 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);