From: Rafael Espindola Date: Mon, 23 Oct 2006 20:08:22 +0000 (+0000) Subject: expand ISD::MEMSET X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=d8ed7f8cde5e56eff4692303af97aa6495c41ca4;p=oota-llvm.git expand ISD::MEMSET git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@31137 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Target/ARM/ARMISelDAGToDAG.cpp b/lib/Target/ARM/ARMISelDAGToDAG.cpp index cd49271e437..43f54acd1ce 100644 --- a/lib/Target/ARM/ARMISelDAGToDAG.cpp +++ b/lib/Target/ARM/ARMISelDAGToDAG.cpp @@ -70,6 +70,9 @@ ARMTargetLowering::ARMTargetLowering(TargetMachine &TM) setOperationAction(ISD::SETCC, MVT::f64, Expand); setOperationAction(ISD::SELECT_CC, MVT::i32, Custom); + + setOperationAction(ISD::MEMSET, MVT::Other, Expand); + setOperationAction(ISD::BRIND, MVT::i32, Expand); setOperationAction(ISD::BR_CC, MVT::i32, Custom); setOperationAction(ISD::BR_CC, MVT::f32, Custom);