From 94660b3c36798acdb0014f6abe4ca9c1071b91bd Mon Sep 17 00:00:00 2001 From: Kostya Serebryany Date: Fri, 23 Oct 2015 18:37:58 +0000 Subject: [libFuzzer] remove some old code; also make __sanitizer_get_total_unique_caller_callee_pairs weak so that newer libFuzzer works with older asan llvm-svn: 251133 --- llvm/lib/Fuzzer/FuzzerInterface.cpp | 3 --- 1 file changed, 3 deletions(-) (limited to 'llvm/lib/Fuzzer/FuzzerInterface.cpp') diff --git a/llvm/lib/Fuzzer/FuzzerInterface.cpp b/llvm/lib/Fuzzer/FuzzerInterface.cpp index 231e757c8b2..79cb0e40f0e 100644 --- a/llvm/lib/Fuzzer/FuzzerInterface.cpp +++ b/llvm/lib/Fuzzer/FuzzerInterface.cpp @@ -19,9 +19,6 @@ void FuzzerRandomLibc::ResetSeed(int seed) { srand(seed); } size_t FuzzerRandomLibc::Rand() { return rand(); } -UserSuppliedFuzzer::UserSuppliedFuzzer() - : OwnRand(true), Rand(new FuzzerRandomLibc(0)), MD(*Rand) {} - UserSuppliedFuzzer::UserSuppliedFuzzer(FuzzerRandomBase *Rand) : Rand(Rand), MD(*Rand) {} -- cgit v1.2.3