[llvm-commits] CVS: llvm/lib/Target/Alpha/AlphaISelLowering.cpp
Nate Begeman
natebegeman at mac.com
Mon Jan 29 14:59:28 PST 2007
Changes in directory llvm/lib/Target/Alpha:
AlphaISelLowering.cpp updated: 1.78 -> 1.79
---
Log message:
Finish off bug 680: http://llvm.org/PR680 , allowing targets to custom lower frame and return
address nodes.
---
Diffs of the changes: (+3 -0)
AlphaISelLowering.cpp | 3 +++
1 files changed, 3 insertions(+)
Index: llvm/lib/Target/Alpha/AlphaISelLowering.cpp
diff -u llvm/lib/Target/Alpha/AlphaISelLowering.cpp:1.78 llvm/lib/Target/Alpha/AlphaISelLowering.cpp:1.79
--- llvm/lib/Target/Alpha/AlphaISelLowering.cpp:1.78 Fri Jan 26 08:34:51 2007
+++ llvm/lib/Target/Alpha/AlphaISelLowering.cpp Mon Jan 29 16:58:52 2007
@@ -544,6 +544,9 @@
return DAG.getTruncStore(S1, DAG.getConstant(VarArgsOffset, MVT::i64),
SA2, NULL, 0, MVT::i32);
}
+ // Frame & Return address. Currently unimplemented
+ case ISD::RETURNADDR: break;
+ case ISD::FRAMEADDR: break;
}
return SDOperand();
More information about the llvm-commits
mailing list