[llvm] 84602f9 - [DFAJumpThreading] Remove unnecessary includes (NFC)

Nikita Popov via llvm-commits llvm-commits at lists.llvm.org
Mon Aug 2 12:13:44 PDT 2021


Author: Nikita Popov
Date: 2021-08-02T21:13:30+02:00
New Revision: 84602f98c6d2df38275d36fd0009406defe3b627

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

LOG: [DFAJumpThreading] Remove unnecessary includes (NFC)

This file uses neither unordered_map nor unordered_set.

Added: 
    

Modified: 
    llvm/lib/Transforms/Scalar/DFAJumpThreading.cpp

Removed: 
    


################################################################################
diff  --git a/llvm/lib/Transforms/Scalar/DFAJumpThreading.cpp b/llvm/lib/Transforms/Scalar/DFAJumpThreading.cpp
index c461d1404672..17354401cb83 100644
--- a/llvm/lib/Transforms/Scalar/DFAJumpThreading.cpp
+++ b/llvm/lib/Transforms/Scalar/DFAJumpThreading.cpp
@@ -84,8 +84,6 @@
 #include "llvm/Transforms/Utils/ValueMapper.h"
 #include <algorithm>
 #include <deque>
-#include <unordered_map>
-#include <unordered_set>
 
 using namespace llvm;
 


        


More information about the llvm-commits mailing list