diff options
author | Eric Christopher <echristo@gmail.com> | 2014-09-03 20:36:31 +0000 |
---|---|---|
committer | Eric Christopher <echristo@gmail.com> | 2014-09-03 20:36:31 +0000 |
commit | b68e25330b102ea662891aca1d129485c37a0268 (patch) | |
tree | 45fbcd52189d008ae270fbdb08215a9c3f47e3f5 /llvm/lib/Target/ARM/ARMSubtarget.h | |
parent | e08189195bb71dccba2f80b908043cc082dea1eb (diff) | |
download | bcm5719-llvm-b68e25330b102ea662891aca1d129485c37a0268.tar.gz bcm5719-llvm-b68e25330b102ea662891aca1d129485c37a0268.zip |
Remove resetSubtargetFeatures as it is unused.
llvm-svn: 217071
Diffstat (limited to 'llvm/lib/Target/ARM/ARMSubtarget.h')
-rw-r--r-- | llvm/lib/Target/ARM/ARMSubtarget.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/llvm/lib/Target/ARM/ARMSubtarget.h b/llvm/lib/Target/ARM/ARMSubtarget.h index 2fdfc35a528..9d5320975e9 100644 --- a/llvm/lib/Target/ARM/ARMSubtarget.h +++ b/llvm/lib/Target/ARM/ARMSubtarget.h @@ -248,9 +248,6 @@ protected: /// subtarget options. Definition of function is auto generated by tblgen. void ParseSubtargetFeatures(StringRef CPU, StringRef FS); - /// \brief Reset the features for the ARM target. - void resetSubtargetFeatures(const MachineFunction *MF) override; - /// initializeSubtargetDependencies - Initializes using a CPU and feature string /// so that we can use initializer lists for subtarget initialization. ARMSubtarget &initializeSubtargetDependencies(StringRef CPU, StringRef FS); @@ -282,7 +279,7 @@ private: std::unique_ptr<ARMFrameLowering> FrameLowering; void initializeEnvironment(); - void resetSubtargetFeatures(StringRef CPU, StringRef FS); + void initSubtargetFeatures(StringRef CPU, StringRef FS); public: void computeIssueWidth(); |