[Hexagon] Keep the bare getSubtargetImpl for now

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@233206 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Krzysztof Parzyszek 2015-03-25 19:51:52 +00:00
parent bd9a548881
commit 1ab309435a

View File

@ -32,6 +32,9 @@ public:
Reloc::Model RM, CodeModel::Model CM,
CodeGenOpt::Level OL);
~HexagonTargetMachine() override;
const HexagonSubtarget *getSubtargetImpl() const {
return &Subtarget;
}
const HexagonSubtarget *getSubtargetImpl(const Function &) const override {
return &Subtarget;
}