mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-06 09:44:39 +00:00
we can't do this directly in lowering, so we need this case
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@24951 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
3d821e26a1
commit
8617f3cf14
@ -343,6 +343,14 @@ SDOperand IA64DAGToDAGISel::Select(SDOperand Op) {
|
||||
|
||||
case ISD::Register: return Op; // XXX: this is a hack, tblgen one day?
|
||||
|
||||
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);
|
||||
}
|
||||
|
||||
case ISD::CALL:
|
||||
case ISD::TAILCALL: { {
|
||||
// FIXME: This is a workaround for a bug in tblgen.
|
||||
|
Loading…
x
Reference in New Issue
Block a user