From 09aa01a6f86e348800d76d7e7008eba9b2d5803f Mon Sep 17 00:00:00 2001 From: Kostya Serebryany Date: Wed, 21 Sep 2016 01:04:43 +0000 Subject: [libFuzzer] refactoring: move the Corpus into a separate class; delete two unused experimental features llvm-svn: 282042 --- llvm/lib/Fuzzer/FuzzerIO.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'llvm/lib/Fuzzer/FuzzerIO.cpp') diff --git a/llvm/lib/Fuzzer/FuzzerIO.cpp b/llvm/lib/Fuzzer/FuzzerIO.cpp index 0e0c4e989cc..5b394b641a3 100644 --- a/llvm/lib/Fuzzer/FuzzerIO.cpp +++ b/llvm/lib/Fuzzer/FuzzerIO.cpp @@ -30,7 +30,7 @@ bool IsFile(const std::string &Path) { return S_ISREG(St.st_mode); } -static long GetEpoch(const std::string &Path) { +long GetEpoch(const std::string &Path) { struct stat St; if (stat(Path.c_str(), &St)) return 0; // Can't stat, be conservative. -- cgit v1.2.3