barannikov88 added inline comments.
================ Comment at: clang/lib/Basic/TargetInfo.cpp:513 if (Opts.MaxBitIntWidth) - MaxBitIntWidth = Opts.MaxBitIntWidth; + MaxBitIntWidth = (unsigned)Opts.MaxBitIntWidth; ---------------- Nit: C-style casts are generally discouraged (there are several occurrences in this patch). ================ Comment at: llvm/lib/CodeGen/RegAllocGreedy.h:83 public: - ExtraRegInfo() = default; + ExtraRegInfo() {} ExtraRegInfo(const ExtraRegInfo &) = delete; ---------------- Is it somehow different than ' = default'? ================ Comment at: mlir/lib/Dialect/GPU/Transforms/SerializeToHsaco.cpp:182 - return ret; + return std::move(ret); } ---------------- clang-tidy would usually complain on this. Does it solve some gcc issue? Repository: rG LLVM Github Monorepo CHANGES SINCE LAST ACTION https://reviews.llvm.org/D140332/new/ https://reviews.llvm.org/D140332 _______________________________________________ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits