[PATCH] D85507: [VE] Remove obsoleted getVEAsmModeForCPU function

Kazushi Marukawa via Phabricator via cfe-commits cfe-commits at lists.llvm.org
Fri Aug 7 02:20:47 PDT 2020


This revision was landed with ongoing or failed builds.
This revision was automatically updated to reflect the committed changes.
Closed by commit rG3ac1eb6358b1: [VE] Remove obsoleted getVEAsmModeForCPU function (authored by kaz7).

Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D85507/new/

https://reviews.llvm.org/D85507

Files:
  clang/lib/Driver/ToolChains/Arch/VE.cpp
  clang/lib/Driver/ToolChains/Arch/VE.h


Index: clang/lib/Driver/ToolChains/Arch/VE.h
===================================================================
--- clang/lib/Driver/ToolChains/Arch/VE.h
+++ clang/lib/Driver/ToolChains/Arch/VE.h
@@ -22,8 +22,6 @@
 
 void getVETargetFeatures(const Driver &D, const llvm::opt::ArgList &Args,
                          std::vector<llvm::StringRef> &Features);
-const char *getVEAsmModeForCPU(llvm::StringRef Name,
-                               const llvm::Triple &Triple);
 
 } // end namespace ve
 } // namespace tools
Index: clang/lib/Driver/ToolChains/Arch/VE.cpp
===================================================================
--- clang/lib/Driver/ToolChains/Arch/VE.cpp
+++ clang/lib/Driver/ToolChains/Arch/VE.cpp
@@ -18,9 +18,5 @@
 using namespace clang;
 using namespace llvm::opt;
 
-const char *ve::getVEAsmModeForCPU(StringRef Name, const llvm::Triple &Triple) {
-  return "";
-}
-
 void ve::getVETargetFeatures(const Driver &D, const ArgList &Args,
                              std::vector<StringRef> &Features) {}


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D85507.283849.patch
Type: text/x-patch
Size: 1032 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20200807/c8ea79f8/attachment.bin>


More information about the cfe-commits mailing list