diff options
author | Erich Keane <erich.keane@intel.com> | 2018-02-08 23:16:55 +0000 |
---|---|---|
committer | Erich Keane <erich.keane@intel.com> | 2018-02-08 23:16:55 +0000 |
commit | e44bdb3f70918c67c99326e12f929e0466a20f9d (patch) | |
tree | 86ea268a8deeaed4bd51a4d6d912dd96c76eacd5 /clang/lib/Basic/Targets/WebAssembly.h | |
parent | d45879d8add0c2d831f89bc638f75e23b75e9a72 (diff) | |
download | bcm5719-llvm-e44bdb3f70918c67c99326e12f929e0466a20f9d.tar.gz bcm5719-llvm-e44bdb3f70918c67c99326e12f929e0466a20f9d.zip |
Add Rest of Targets Support to ValidCPUList (enabling march notes)
A followup to: https://reviews.llvm.org/D42978
Most of the rest of the Targets were pretty rote, so this
patch knocks them all out at once.
Differential Revision: https://reviews.llvm.org/D43057
llvm-svn: 324676
Diffstat (limited to 'clang/lib/Basic/Targets/WebAssembly.h')
-rw-r--r-- | clang/lib/Basic/Targets/WebAssembly.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/clang/lib/Basic/Targets/WebAssembly.h b/clang/lib/Basic/Targets/WebAssembly.h index b01613aa8a0..305463cd3c7 100644 --- a/clang/lib/Basic/Targets/WebAssembly.h +++ b/clang/lib/Basic/Targets/WebAssembly.h @@ -74,6 +74,7 @@ private: DiagnosticsEngine &Diags) final; bool isValidCPUName(StringRef Name) const final; + void fillValidCPUList(SmallVectorImpl<StringRef> &Values) const final; bool setCPU(const std::string &Name) final { return isValidCPUName(Name); } |