[llvm] b013c58 - VPlanSLP.cpp - tidy implicit header dependencies. NFCI.

Simon Pilgrim via llvm-commits llvm-commits at lists.llvm.org
Sun Jun 13 04:37:47 PDT 2021


Author: Simon Pilgrim
Date: 2021-06-13T12:37:17+01:00
New Revision: b013c58e82c67574b137d33d275c7b9328446b70

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

LOG: VPlanSLP.cpp - tidy implicit header dependencies. NFCI.

We don't use std::string and std::vector, but we do use std::pair and std::max.

Added: 
    

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

Removed: 
    


################################################################################
diff  --git a/llvm/lib/Transforms/Vectorize/VPlanSLP.cpp b/llvm/lib/Transforms/Vectorize/VPlanSLP.cpp
index fd02805d971f7..c52c8a2229e8f 100644
--- a/llvm/lib/Transforms/Vectorize/VPlanSLP.cpp
+++ b/llvm/lib/Transforms/Vectorize/VPlanSLP.cpp
@@ -35,10 +35,10 @@
 #include "llvm/Support/GraphWriter.h"
 #include "llvm/Support/raw_ostream.h"
 #include "llvm/Transforms/Utils/BasicBlockUtils.h"
+#include <algorithm>
 #include <cassert>
 #include <iterator>
-#include <string>
-#include <vector>
+#include <utility>
 
 using namespace llvm;
 


        


More information about the llvm-commits mailing list