mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-26 13:36:28 +00:00
Remove the TargetLowering::getSubtarget() virtual function, which
was unused. TargetMachine::getSubtarget() is used instead. llvm-svn: 103474
This commit is contained in:
parent
e302300b51
commit
eaacb8cb1f
@ -1103,12 +1103,6 @@ protected:
|
||||
}
|
||||
|
||||
public:
|
||||
|
||||
virtual const TargetSubtarget *getSubtarget() const {
|
||||
assert(0 && "Not Implemented");
|
||||
return NULL; // this is here to silence compiler errors
|
||||
}
|
||||
|
||||
//===--------------------------------------------------------------------===//
|
||||
// Lowering methods - These methods must be implemented by targets so that
|
||||
// the SelectionDAGLowering code knows how to lower these.
|
||||
|
@ -236,7 +236,7 @@ namespace llvm {
|
||||
std::vector<SDValue> &Ops,
|
||||
SelectionDAG &DAG) const;
|
||||
|
||||
virtual const ARMSubtarget* getSubtarget() const {
|
||||
const ARMSubtarget* getSubtarget() const {
|
||||
return Subtarget;
|
||||
}
|
||||
|
||||
|
@ -563,7 +563,7 @@ namespace llvm {
|
||||
return !X86ScalarSSEf64 || VT == MVT::f80;
|
||||
}
|
||||
|
||||
virtual const X86Subtarget* getSubtarget() const {
|
||||
const X86Subtarget* getSubtarget() const {
|
||||
return Subtarget;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user