hwasan: Remove unused field CurModuleUniqueId. NFCI.

llvm-svn: 367717
This commit is contained in:
Peter Collingbourne 2019-08-02 20:14:58 +00:00
parent 10430f4174
commit 196931a7dd
1 changed files with 0 additions and 2 deletions

View File

@ -218,7 +218,6 @@ public:
private:
LLVMContext *C;
std::string CurModuleUniqueId;
Triple TargetTriple;
FunctionCallee HWAsanMemmove, HWAsanMemcpy, HWAsanMemset;
FunctionCallee HWAsanHandleVfork;
@ -342,7 +341,6 @@ void HWAddressSanitizer::initializeModule(Module &M) {
Mapping.init(TargetTriple);
C = &(M.getContext());
CurModuleUniqueId = getUniqueModuleId(&M);
IRBuilder<> IRB(*C);
IntptrTy = IRB.getIntPtrTy(DL);
Int8PtrTy = IRB.getInt8PtrTy();