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

Fixed compilation errors on VC++.

llvm-svn: 43836
This commit is contained in:
Hartmut Kaiser 2007-11-07 19:33:31 +00:00
parent 846a3448a1
commit a23dfa2c76

View File

@ -848,6 +848,7 @@ public:
virtual const TargetSubtarget *getSubtarget() {
assert(0 && "Not Implemented");
return NULL; // this is here to silence compiler errors
}
//===--------------------------------------------------------------------===//
// Lowering methods - These methods must be implemented by targets so that
@ -891,6 +892,7 @@ public:
SDOperand Source, unsigned Size,
unsigned Align, SelectionDAG &DAG) {
assert(0 && "Not Implemented");
return SDOperand(); // this is here to silence compiler errors
}