[llvm] 4ce5506 - [Post-Commit] Add missing `break`

via llvm-commits llvm-commits at lists.llvm.org
Sun Aug 24 02:38:35 PDT 2025


Author: Rajveer Singh Bharadwaj
Date: 2025-08-24T15:08:32+05:30
New Revision: 4ce550614b4be07b6a7162064010328891296c24

URL: https://github.com/llvm/llvm-project/commit/4ce550614b4be07b6a7162064010328891296c24
DIFF: https://github.com/llvm/llvm-project/commit/4ce550614b4be07b6a7162064010328891296c24.diff

LOG: [Post-Commit] Add missing `break`

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

Added: 
    

Modified: 
    llvm/lib/Transforms/Vectorize/VectorCombine.cpp

Removed: 
    


################################################################################
diff  --git a/llvm/lib/Transforms/Vectorize/VectorCombine.cpp b/llvm/lib/Transforms/Vectorize/VectorCombine.cpp
index 221970f1ebb41..092a3a87954ff 100644
--- a/llvm/lib/Transforms/Vectorize/VectorCombine.cpp
+++ b/llvm/lib/Transforms/Vectorize/VectorCombine.cpp
@@ -4488,6 +4488,7 @@ bool VectorCombine::run() {
       case Instruction::ExtractElement:
         if (foldShuffleChainsToReduce(I))
           return true;
+        break;
       case Instruction::ICmp:
       case Instruction::FCmp:
         if (foldExtractExtract(I))


        


More information about the llvm-commits mailing list