1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 03:33:20 +01:00

[Hexagon] Keep the bare getSubtargetImpl for now

llvm-svn: 233206
This commit is contained in:
Krzysztof Parzyszek 2015-03-25 19:51:52 +00:00
parent d0dd6e5750
commit 9173594bab

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;
}