Displaying 3 results from an estimated 3 matches for "newdmask".
Did you mean:
new_mask
2013 Nov 26
2
[LLVMdev] R600/SI build failure on Leopard (Use of C++11)
...ilding on OS X Leopard (https://trac.macports.org/ticket/41548). It seems the issue is with a commit that you made back in April (referenced below) which added this to SIISelLowering.cpp:
// Adjust the writemask in the node
std::vector<SDValue> Ops;
Ops.push_back(DAG.getTargetConstant(NewDmask, MVT::i32));
for (unsigned i = 1, e = Node->getNumOperands(); i != e; ++i)
Ops.push_back(Node->getOperand(i));
Node = (MachineSDNode*)DAG.UpdateNodeOperands(Node, Ops.data(), Ops.size());
That fails with Leopard's libstdc++ STL which does not a data method for std::vector. This...
2013 Nov 26
0
[LLVMdev] R600/SI build failure on Leopard (Use of C++11)
...ard (https://trac.macports.org/ticket/41548). It seems the issue is with a commit that you made back in April (referenced below) which added this to SIISelLowering.cpp:
>
> // Adjust the writemask in the node
> std::vector<SDValue> Ops;
> Ops.push_back(DAG.getTargetConstant(NewDmask, MVT::i32));
> for (unsigned i = 1, e = Node->getNumOperands(); i != e; ++i)
> Ops.push_back(Node->getOperand(i));
> Node = (MachineSDNode*)DAG.UpdateNodeOperands(Node, Ops.data(), Ops.size());
>
> That fails with Leopard's libstdc++ STL which does not a data method...
2013 Nov 26
2
[LLVMdev] R600/SI build failure on Leopard (Use of C++11)
...rac.macports.org/ticket/41548). It seems the issue is with a commit that you made back in April (referenced below) which added this to SIISelLowering.cpp:
>>
>> // Adjust the writemask in the node
>> std::vector<SDValue> Ops;
>> Ops.push_back(DAG.getTargetConstant(NewDmask, MVT::i32));
>> for (unsigned i = 1, e = Node->getNumOperands(); i != e; ++i)
>> Ops.push_back(Node->getOperand(i));
>> Node = (MachineSDNode*)DAG.UpdateNodeOperands(Node, Ops.data(), Ops.size());
>>
>> That fails with Leopard's libstdc++ STL which does...