summaryrefslogtreecommitdiff
path: root/docs/FuzzingLLVM.rst
diff options
context:
space:
mode:
authorMatt Morehouse <mascasa@google.com>2017-10-13 00:18:32 +0000
committerMatt Morehouse <mascasa@google.com>2017-10-13 00:18:32 +0000
commit5cb6ac0fdba390c29bb001d8b767e8155e35533e (patch)
tree0644ebb595bfc3a4842084a9e050e97437b73d8d /docs/FuzzingLLVM.rst
parent7e667e4d94465de44d6091ba1887ca5990a4be90 (diff)
[llvm-isel-fuzzer] Use "--" as separator rather than '='.
Summary: OSS-Fuzz doesn't support '=' in filenames. Reviewers: bogner, kcc Reviewed By: kcc Subscribers: javed.absar, hiraditya, llvm-commits Differential Revision: https://reviews.llvm.org/D38866 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@315647 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/FuzzingLLVM.rst')
-rw-r--r--docs/FuzzingLLVM.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/FuzzingLLVM.rst b/docs/FuzzingLLVM.rst
index e896b9503da..aa777cf7cd6 100644
--- a/docs/FuzzingLLVM.rst
+++ b/docs/FuzzingLLVM.rst
@@ -83,7 +83,7 @@ the following command would fuzz AArch64 with :doc:`GlobalISel`:
Some flags can also be specified in the binary name itself in order to support
OSS Fuzz, which has trouble with required arguments. To do this, you can copy
-or move ``llvm-isel-fuzzer`` to ``llvm-isel-fuzzer=x-y-z``, where x, y, and z
+or move ``llvm-isel-fuzzer`` to ``llvm-isel-fuzzer--x-y-z``, where x, y, and z
are architecture names (``aarch64``, ``x86_64``), optimization levels (``O0``,
``O2``), or specific keywords like ``gisel`` for enabling global instruction
selection.