[Lldb-commits] [PATCH] D113608: [lldb] Simplify specifying of platform supported architectures

Pavel Labath via Phabricator via lldb-commits lldb-commits at lists.llvm.org
Wed Nov 10 12:58:36 PST 2021


labath added inline comments.


================
Comment at: lldb/include/lldb/Target/Platform.h:332
+  /// of them.
+  virtual std::vector<ArchSpec> GetSupportedArchitectures();
 
----------------
If all platforms (as I expect them to) implement this by maintaining a vector of supported architectures, this could be changed into an ArrayRef<ArchSpec>, but returning a value type for now simplifies the rollout.


Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D113608



More information about the lldb-commits mailing list