From: Rafael Espindola Date: Thu, 19 Oct 2006 10:56:43 +0000 (+0000) Subject: expand brind so that we don't have to implement jump tables right now X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=4749aa4ea373e2928444974a761e14cf8c3b3f90;p=oota-llvm.git expand brind so that we don't have to implement jump tables right now git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@31045 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Target/ARM/ARMISelDAGToDAG.cpp b/lib/Target/ARM/ARMISelDAGToDAG.cpp index 283d0f18c79..f6df6b01b9c 100644 --- a/lib/Target/ARM/ARMISelDAGToDAG.cpp +++ b/lib/Target/ARM/ARMISelDAGToDAG.cpp @@ -66,6 +66,7 @@ ARMTargetLowering::ARMTargetLowering(TargetMachine &TM) setOperationAction(ISD::SETCC, MVT::f64, Expand); setOperationAction(ISD::SELECT_CC, MVT::i32, Custom); + setOperationAction(ISD::BRIND, MVT::i32, Expand); setOperationAction(ISD::BR_CC, MVT::i32, Custom); setOperationAction(ISD::BR_CC, MVT::f32, Custom); setOperationAction(ISD::BR_CC, MVT::f64, Custom);