[compiler-rt] cd573e0 - [compiler-rt] Remove unused local variables (NFC) (#144010)

via llvm-commits llvm-commits at lists.llvm.org
Thu Jun 12 22:45:11 PDT 2025


Author: Kazu Hirata
Date: 2025-06-12T22:45:08-07:00
New Revision: cd573e0a547dba18e2a960967c1f24f124c6cb26

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

LOG: [compiler-rt] Remove unused local variables (NFC) (#144010)

Added: 
    

Modified: 
    compiler-rt/lib/fuzzer/FuzzerDataFlowTrace.cpp

Removed: 
    


################################################################################
diff  --git a/compiler-rt/lib/fuzzer/FuzzerDataFlowTrace.cpp b/compiler-rt/lib/fuzzer/FuzzerDataFlowTrace.cpp
index 93bf817a857b4..c9210c78a0631 100644
--- a/compiler-rt/lib/fuzzer/FuzzerDataFlowTrace.cpp
+++ b/compiler-rt/lib/fuzzer/FuzzerDataFlowTrace.cpp
@@ -265,8 +265,6 @@ int CollectDataFlow(const std::string &DFTBinary, const std::string &DirPath,
     // we then request tags in [0,Size/2) and [Size/2, Size), and so on.
     // Function number => DFT.
     auto OutPath = DirPlusFile(DirPath, Hash(FileToVector(F.File)));
-    std::unordered_map<size_t, std::vector<uint8_t>> DFTMap;
-    std::unordered_set<std::string> Cov;
     Command Cmd;
     Cmd.addArgument(DFTBinary);
     Cmd.addArgument(F.File);


        


More information about the llvm-commits mailing list