From: Owen Anderson Date: Fri, 22 Jun 2007 16:59:54 +0000 (+0000) Subject: Fix the build. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=0819a9d386e2b690abee8ae779c8ba84639ec664;p=oota-llvm.git Fix the build. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@37705 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Target/ARM/ARMInstrInfo.td b/lib/Target/ARM/ARMInstrInfo.td index 742b8821539..deeb236cb3b 100644 --- a/lib/Target/ARM/ARMInstrInfo.td +++ b/lib/Target/ARM/ARMInstrInfo.td @@ -152,7 +152,7 @@ def so_imm_not : // sext_16_node predicate - True if the SDNode is sign-extended 16 or more bits. def sext_16_node : PatLeaf<(i32 GPR:$a), [{ - return TLI.ComputeNumSignBits(SDOperand(N,0)) >= 17; + return CurDAG->ComputeNumSignBits(SDOperand(N,0)) >= 17; }]>;