test/tint: Fix spvasm expectation

Change-Id: I4f8ff98b980d9dd9a89e7e4407f6e1cbd1eaaf0a
Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/132320
Kokoro: Ben Clayton <bclayton@google.com>
Auto-Submit: Ben Clayton <bclayton@google.com>
Commit-Queue: Ben Clayton <bclayton@google.com>
Reviewed-by: Antonio Maiorano <amaiorano@google.com>
Reviewed-by: James Price <jrprice@google.com>
This commit is contained in:
Ben Clayton 2023-05-09 20:09:58 +00:00 committed by Dawn LUCI CQ
parent 3731ce8f21
commit 1c56265ee1
1 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
const x_22 = vec2<f32>(2.0f, 2.0f);
const x_22 = vec2f(2.0f, 2.0f);
fn main_1() {
let distance_1 : vec2<f32> = x_22;
let distance_1 : vec2f = x_22;
let x_10 : f32 = distance(distance_1, x_22);
return;
}