diff options
| author | Matt Morehouse <mascasa@google.com> | 2018-08-28 19:07:24 +0000 |
|---|---|---|
| committer | Matt Morehouse <mascasa@google.com> | 2018-08-28 19:07:24 +0000 |
| commit | bab8556f01b36f519f3f7bd9f616cab17a5bf862 (patch) | |
| tree | 00c47d724c2e95064360d3dbf945a87ef17a1b21 /compiler-rt/lib/fuzzer/FuzzerUtilWindows.cpp | |
| parent | 755f41f3a2125d3ef56dfe2cb0997ae7243785c5 (diff) | |
| download | bcm5719-llvm-bab8556f01b36f519f3f7bd9f616cab17a5bf862.tar.gz bcm5719-llvm-bab8556f01b36f519f3f7bd9f616cab17a5bf862.zip | |
Revert "[libFuzzer] Port to Windows"
This reverts commit r340860 due to failing tests.
llvm-svn: 340867
Diffstat (limited to 'compiler-rt/lib/fuzzer/FuzzerUtilWindows.cpp')
| -rw-r--r-- | compiler-rt/lib/fuzzer/FuzzerUtilWindows.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/compiler-rt/lib/fuzzer/FuzzerUtilWindows.cpp b/compiler-rt/lib/fuzzer/FuzzerUtilWindows.cpp index 257723b6050..8227e778ea0 100644 --- a/compiler-rt/lib/fuzzer/FuzzerUtilWindows.cpp +++ b/compiler-rt/lib/fuzzer/FuzzerUtilWindows.cpp @@ -179,9 +179,7 @@ const void *SearchMemory(const void *Data, size_t DataLen, const void *Patt, } std::string DisassembleCmd(const std::string &FileName) { - Vector<std::string> command_vector; - command_vector.push_back("dumpbin /summary > nul"); - if (ExecuteCommand(Command(command_vector)) == 0) + if (ExecuteCommand("dumpbin /summary > nul") == 0) return "dumpbin /disasm " + FileName; Printf("libFuzzer: couldn't find tool to disassemble (dumpbin)\n"); exit(1); |

