spirv-reader: fix SPIR-V types in handle tests

Bug: tint:109
Change-Id: Icb4cbe12334c92a86d1c52a0b3569fb22a1cfc7c
Reviewed-on: https://dawn-review.googlesource.com/c/tint/+/34421
Reviewed-by: Ben Clayton <bclayton@google.com>
Commit-Queue: Ben Clayton <bclayton@google.com>
Auto-Submit: David Neto <dneto@google.com>
This commit is contained in:
David Neto 2020-11-30 22:48:55 +00:00 committed by Commit Bot service account
parent eac3c5bf51
commit 386755b1ac
1 changed files with 2 additions and 2 deletions

View File

@ -49,8 +49,8 @@ std::string CommonBasicTypes() {
%uint = OpTypeInt 32 0 %uint = OpTypeInt 32 0
%int = OpTypeInt 32 1 %int = OpTypeInt 32 1
%int_3 = OpConstant %uint 3 %int_3 = OpConstant %int 3
%int_4 = OpConstant %uint 4 %int_4 = OpConstant %int 4
%uint_0 = OpConstant %uint 0 %uint_0 = OpConstant %uint 0
%uint_1 = OpConstant %uint 1 %uint_1 = OpConstant %uint 1
%uint_2 = OpConstant %uint 2 %uint_2 = OpConstant %uint 2