diff options
author | Douglas Katzman <dougk@google.com> | 2015-06-02 22:06:32 +0000 |
---|---|---|
committer | Douglas Katzman <dougk@google.com> | 2015-06-02 22:06:32 +0000 |
commit | 9c19d35fa78df605b62fc28e8b960d7999d1e07e (patch) | |
tree | 89a4d98bc4a462185f883d514ead0472fc3a868d /clang/docs | |
parent | e497beddb5ec4375df48fe144c700219a2fd3aae (diff) | |
download | bcm5719-llvm-9c19d35fa78df605b62fc28e8b960d7999d1e07e.tar.gz bcm5719-llvm-9c19d35fa78df605b62fc28e8b960d7999d1e07e.zip |
Correct DriverInternals.rst: ccc-print-options is gone.
Was removed in svn r189802.
llvm-svn: 238876
Diffstat (limited to 'clang/docs')
-rw-r--r-- | clang/docs/DriverInternals.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/docs/DriverInternals.rst b/clang/docs/DriverInternals.rst index c779555dae3..4cd2e5dfe6b 100644 --- a/clang/docs/DriverInternals.rst +++ b/clang/docs/DriverInternals.rst @@ -138,12 +138,12 @@ The driver functionality is conceptually divided into five stages: this vector instead of storing its values directly. The clang driver can dump the results of this stage using the - ``-ccc-print-options`` flag (which must precede any actual command + ``-###`` flag (which must precede any actual command line arguments). For example: .. code-block:: console - $ clang -ccc-print-options -Xarch_i386 -fomit-frame-pointer -Wa,-fast -Ifoo -I foo t.c + $ clang -### -Xarch_i386 -fomit-frame-pointer -Wa,-fast -Ifoo -I foo t.c Option 0 - Name: "-Xarch_", Values: {"i386", "-fomit-frame-pointer"} Option 1 - Name: "-Wa,", Values: {"-fast"} Option 2 - Name: "-I", Values: {"foo"} |