diff --git a/libclambcc/ClamBCAnalyzer/ClamBCAnalyzer.h b/libclambcc/ClamBCAnalyzer/ClamBCAnalyzer.h index 2417d035a7..3f1b038e4e 100644 --- a/libclambcc/ClamBCAnalyzer/ClamBCAnalyzer.h +++ b/libclambcc/ClamBCAnalyzer/ClamBCAnalyzer.h @@ -113,17 +113,6 @@ class ClamBCAnalysis globalsMap["__clambc_match_offsets"] = GLOBAL_MATCH_OFFSETS; } - virtual uint32_t getHighestTID() - { - uint32_t ret = 0; - for (auto i = typeIDs.begin(), e = typeIDs.end(); i != e; i++) { - if (i->second > ret) { - ret = i->second; - } - } - return ret; - } - ~ClamBCAnalysis() {} virtual void run(llvm::Module &m);