[llvm] [AA] A conservative fix for atomic store instruction. (PR #155032)

Nikita Popov via llvm-commits llvm-commits at lists.llvm.org
Thu Sep 4 09:35:10 PDT 2025


================
@@ -54,8 +54,8 @@
 
 using namespace llvm;
 
-STATISTIC(NumNoAlias,   "Number of NoAlias results");
-STATISTIC(NumMayAlias,  "Number of MayAlias results");
+STATISTIC(NumNoAlias, "Number of NoAlias results");
+STATISTIC(NumMayAlias, "Number of MayAlias results");
----------------
nikic wrote:

Please don't reformat unrelated code. You can use git-clang-format to only format the changed lines.

https://github.com/llvm/llvm-project/pull/155032


More information about the llvm-commits mailing list