From e55ecfb870b2d65cbc913a8d5db34a2934f835d8 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Sun, 8 Apr 2007 22:23:26 +0000 Subject: [PATCH] Fix for CodeGen/X86/2007-04-08-InlineAsmCrash.ll and PR1314 llvm-svn: 35779 --- llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp b/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp index 1947414884c5..304392c0b43e 100644 --- a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp @@ -2687,7 +2687,7 @@ void RegsForValue::getCopyToRegs(SDOperand Val, SelectionDAG &DAG, /// values added into it. void RegsForValue::AddInlineAsmOperands(unsigned Code, SelectionDAG &DAG, std::vector &Ops) const { - Ops.push_back(DAG.getConstant(Code | (Regs.size() << 3), MVT::i32)); + Ops.push_back(DAG.getTargetConstant(Code | (Regs.size() << 3), MVT::i32)); for (unsigned i = 0, e = Regs.size(); i != e; ++i) Ops.push_back(DAG.getRegister(Regs[i], RegVT)); }