Remove --dump-ast from help text and README

This flag was previously removed.

Change-Id: I8b6ed8dd8966fcf7b587a65e78dcc06c2b2a9cd2
Reviewed-on: https://dawn-review.googlesource.com/c/tint/+/68240
Auto-Submit: James Price <jrprice@google.com>
Commit-Queue: Ben Clayton <bclayton@google.com>
Kokoro: Kokoro <noreply+kokoro@google.com>
Reviewed-by: Ben Clayton <bclayton@google.com>
This commit is contained in:
James Price 2021-11-03 16:43:05 +00:00 committed by Tint LUCI CQ
parent e9216ce595
commit e0e45a4d47
2 changed files with 0 additions and 4 deletions

View File

@ -108,7 +108,6 @@ const char kUsage[] = R"(Usage: tint [options] <input-file>
renamer renamer
robustness robustness
--parse-only -- Stop after parsing the input --parse-only -- Stop after parsing the input
--dump-ast -- Dump the generated AST to stdout
--disable-workgroup-init -- Disable workgroup memory zero initialization. --disable-workgroup-init -- Disable workgroup memory zero initialization.
--demangle -- Preserve original source names. Demangle them. --demangle -- Preserve original source names. Demangle them.
Affects AST dumping, and text-based output languages. Affects AST dumping, and text-based output languages.

View File

@ -7,9 +7,6 @@ implements the Reader interface in `tint::reader::Reader`.
It's usable from the Tint command line: It's usable from the Tint command line:
# Dump the Tint AST after reading SPIR-V.
tint --dump-ast --parse-only a.spv
# Translate SPIR-V into WGSL. # Translate SPIR-V into WGSL.
tint --format wgsl a.spv tint --format wgsl a.spv