barannikov88 added inline comments.

================
Comment at: llvm/include/llvm/ADT/Triple.h:916
+  /// Tests if the target is {arm,thumb}-none-none-{eabi,eabihf}.
+  bool isARMBareMetal() const {
+    if (getArch() != Triple::arm && getArch() != Triple::thumb)
----------------
Any future change to these methods will force recompilation of the whole 
project. It is better to move the definitions into the corresponding cpp file.


Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D131225

_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to