[PATCH] D128907: [Clang] Disable noundef attribute for languages which allow uninitialized function arguments

Matt Arsenault via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Thu Jun 30 07:11:47 PDT 2022


arsenm added inline comments.


================
Comment at: clang/include/clang/Basic/LangOptions.h:534
+  bool allowUninitializedFunctionsArgs() const {
+    return ConvergentFunctions;
+  }
----------------
Should add a comment explaining it here


Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D128907



More information about the llvm-commits mailing list