[compiler-rt] r372937 - [libFuzzer] [NFC] Fix grammar error with "it's"
Mitch Phillips via llvm-commits
llvm-commits at lists.llvm.org
Wed Sep 25 17:54:30 PDT 2019
Author: hctim
Date: Wed Sep 25 17:54:30 2019
New Revision: 372937
URL: http://llvm.org/viewvc/llvm-project?rev=372937&view=rev
Log:
[libFuzzer] [NFC] Fix grammar error with "it's"
Modified:
compiler-rt/trunk/lib/fuzzer/FuzzerLoop.cpp
compiler-rt/trunk/test/fuzzer/overwrite-input.test
Modified: compiler-rt/trunk/lib/fuzzer/FuzzerLoop.cpp
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/fuzzer/FuzzerLoop.cpp?rev=372937&r1=372936&r2=372937&view=diff
==============================================================================
--- compiler-rt/trunk/lib/fuzzer/FuzzerLoop.cpp (original)
+++ compiler-rt/trunk/lib/fuzzer/FuzzerLoop.cpp Wed Sep 25 17:54:30 2019
@@ -513,7 +513,7 @@ size_t Fuzzer::GetCurrentUnitInFuzzingTh
}
void Fuzzer::CrashOnOverwrittenData() {
- Printf("==%d== ERROR: libFuzzer: fuzz target overwrites it's const input\n",
+ Printf("==%d== ERROR: libFuzzer: fuzz target overwrites its const input\n",
GetPid());
DumpCurrentUnit("crash-");
Printf("SUMMARY: libFuzzer: out-of-memory\n");
Modified: compiler-rt/trunk/test/fuzzer/overwrite-input.test
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/fuzzer/overwrite-input.test?rev=372937&r1=372936&r2=372937&view=diff
==============================================================================
--- compiler-rt/trunk/test/fuzzer/overwrite-input.test (original)
+++ compiler-rt/trunk/test/fuzzer/overwrite-input.test Wed Sep 25 17:54:30 2019
@@ -1,3 +1,3 @@
RUN: %cpp_compiler %S/OverwriteInputTest.cpp -o %t-OverwriteInputTest
RUN: not %run %t-OverwriteInputTest 2>&1 | FileCheck %s
-CHECK: ERROR: libFuzzer: fuzz target overwrites it's const input
+CHECK: ERROR: libFuzzer: fuzz target overwrites its const input
More information about the llvm-commits
mailing list