[llvm] 752c1cf - [Instrumentation] Fix formatting of MemorySanitizer.cpp

Kazu Hirata via llvm-commits llvm-commits at lists.llvm.org
Wed Sep 10 08:23:20 PDT 2025


Author: Kazu Hirata
Date: 2025-09-10T08:23:13-07:00
New Revision: 752c1cf8056c3ca1e326cfc7692f2e32e5917374

URL: https://github.com/llvm/llvm-project/commit/752c1cf8056c3ca1e326cfc7692f2e32e5917374
DIFF: https://github.com/llvm/llvm-project/commit/752c1cf8056c3ca1e326cfc7692f2e32e5917374.diff

LOG: [Instrumentation] Fix formatting of MemorySanitizer.cpp

Added: 
    

Modified: 
    llvm/lib/Transforms/Instrumentation/MemorySanitizer.cpp

Removed: 
    


################################################################################
diff  --git a/llvm/lib/Transforms/Instrumentation/MemorySanitizer.cpp b/llvm/lib/Transforms/Instrumentation/MemorySanitizer.cpp
index e2da9aa7b7c1c..9899a2aae2b15 100644
--- a/llvm/lib/Transforms/Instrumentation/MemorySanitizer.cpp
+++ b/llvm/lib/Transforms/Instrumentation/MemorySanitizer.cpp
@@ -3903,7 +3903,8 @@ struct MemorySanitizerVisitor : public InstVisitor<MemorySanitizerVisitor> {
            ReturnType->getPrimitiveSizeInBits());
 
     if (I.arg_size() == 3) {
-      [[maybe_unused]] auto *AccumulatorType = cast<FixedVectorType>(I.getOperand(0)->getType());
+      [[maybe_unused]] auto *AccumulatorType =
+          cast<FixedVectorType>(I.getOperand(0)->getType());
       assert(AccumulatorType == ReturnType);
     }
 


        


More information about the llvm-commits mailing list