1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 19:42:54 +02:00

cleanup GETFD

llvm-svn: 25198
This commit is contained in:
Duraid Madina 2006-01-11 03:50:40 +00:00
parent 09447d44ac
commit 52e3f53ea5

View File

@ -411,10 +411,9 @@ SDOperand IA64DAGToDAGISel::Select(SDOperand Op) {
case IA64ISD::GETFD: {
SDOperand Input = Select(N->getOperand(0));
SDOperand Result = CurDAG->getTargetNode(IA64::GETFD, MVT::i64, MVT::Flag, Input);
CodeGenMap[Op.getValue(0)] = Result;
CodeGenMap[Op.getValue(1)] = Result.getValue(1);
return Result.getValue(Op.ResNo);
SDOperand Result = CurDAG->getTargetNode(IA64::GETFD, MVT::i64, Input);
CodeGenMap[Op] = Result;
return Result;
}
case ISD::CALL: