From e0e45a4d473a256aadc8e8765ce71a536c22b634 Mon Sep 17 00:00:00 2001 From: James Price Date: Wed, 3 Nov 2021 16:43:05 +0000 Subject: [PATCH] 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 Commit-Queue: Ben Clayton Kokoro: Kokoro Reviewed-by: Ben Clayton --- samples/main.cc | 1 - src/reader/spirv/README.md | 3 --- 2 files changed, 4 deletions(-) diff --git a/samples/main.cc b/samples/main.cc index ca2c45665c..29835f41d7 100644 --- a/samples/main.cc +++ b/samples/main.cc @@ -108,7 +108,6 @@ const char kUsage[] = R"(Usage: tint [options] renamer robustness --parse-only -- Stop after parsing the input - --dump-ast -- Dump the generated AST to stdout --disable-workgroup-init -- Disable workgroup memory zero initialization. --demangle -- Preserve original source names. Demangle them. Affects AST dumping, and text-based output languages. diff --git a/src/reader/spirv/README.md b/src/reader/spirv/README.md index e5f2f0dd90..f782e21b20 100644 --- a/src/reader/spirv/README.md +++ b/src/reader/spirv/README.md @@ -7,9 +7,6 @@ implements the Reader interface in `tint::reader::Reader`. 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. tint --format wgsl a.spv