Skip to content

Commit

Permalink
Fixed compilation errors on VC++.
Browse files Browse the repository at this point in the history
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@43836 91177308-0d34-0410-b5e6-96231b3b80d8
  • Loading branch information
hkaiser committed Nov 7, 2007
1 parent c47dfdd commit a1dc96e
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions include/llvm/Target/TargetLowering.h
Original file line number Diff line number Diff line change
Expand Up @@ -848,6 +848,7 @@ class TargetLowering {

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
Expand Down Expand Up @@ -891,6 +892,7 @@ class TargetLowering {
SDOperand Source, unsigned Size,
unsigned Align, SelectionDAG &DAG) {
assert(0 && "Not Implemented");
return SDOperand(); // this is here to silence compiler errors
}


Expand Down

0 comments on commit a1dc96e

Please sign in to comment.