[llvm-commits] CVS: llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp
Misha Brukman
brukman at cs.uiuc.edu
Thu Feb 17 13:39:37 PST 2005
Changes in directory llvm/lib/CodeGen/SelectionDAG:
SelectionDAGISel.cpp updated: 1.31 -> 1.32
---
Log message:
Fix compilation errors with VS 2005, patch by Aaron Gray.
---
Diffs of the changes: (+3 -0)
SelectionDAGISel.cpp | 3 +++
1 files changed, 3 insertions(+)
Index: llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp
diff -u llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp:1.31 llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp:1.32
--- llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp:1.31 Thu Feb 17 13:40:32 2005
+++ llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp Thu Feb 17 15:39:27 2005
@@ -720,6 +720,7 @@
// out.
std::cerr << "Variable arguments handling not implemented on this target!\n";
abort();
+ return std::make_pair(SDOperand(), SDOperand());
}
SDOperand TargetLowering::LowerVAEnd(SDOperand Chain, SDOperand L,
@@ -741,6 +742,7 @@
// out.
std::cerr << "Variable arguments handling not implemented on this target!\n";
abort();
+ return std::make_pair(SDOperand(), SDOperand());
}
@@ -789,6 +791,7 @@
SDOperand TargetLowering::LowerOperation(SDOperand Op) {
assert(0 && "LowerOperation not implemented for this target!");
abort();
+ return SDOperand();
}
void SelectionDAGLowering::visitFrameReturnAddress(CallInst &I, bool isFrame) {
More information about the llvm-commits
mailing list