Rename tint::reader::spv -> tint::reader::spirv

Bug: tint:3
Change-Id: Iabee55bc75f60c04d00cd1560721def903052359
Reviewed-on: https://dawn-review.googlesource.com/c/tint/+/17001
Reviewed-by: dan sinclair <dsinclair@google.com>
This commit is contained in:
David Neto
2020-03-17 20:08:06 +00:00
committed by dan sinclair
parent 4e7f7da729
commit 4df5d409c4
12 changed files with 23 additions and 23 deletions

View File

@@ -245,7 +245,7 @@ int main(int argc, const char** argv) {
if (!ReadFile<uint32_t>(options.input_filename, &data)) {
return 1;
}
reader = std::make_unique<tint::reader::spv::Parser>(data);
reader = std::make_unique<tint::reader::spirv::Parser>(data);
}
#endif
if (!reader) {