[glsl][ir] Emit StorageTexture types.
This CL adds support for emitting Storage Textures from the GLSL IR
backend.
Bug: 42251044
Change-Id: I36b54c81de06b9c52e30f2f657f8b16de45ca379
Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/204474
Reviewed-by: James Price <jrprice@google.com>
Commit-Queue: James Price <jrprice@google.com>
diff --git a/src/tint/lang/glsl/writer/printer/printer.cc b/src/tint/lang/glsl/writer/printer/printer.cc
index 3c0b48e..b0256f4 100644
--- a/src/tint/lang/glsl/writer/printer/printer.cc
+++ b/src/tint/lang/glsl/writer/printer/printer.cc
@@ -49,6 +49,7 @@
#include "src/tint/lang/core/ir/user_call.h"
#include "src/tint/lang/core/ir/validator.h"
#include "src/tint/lang/core/ir/var.h"
+#include "src/tint/lang/core/texel_format.h"
#include "src/tint/lang/core/type/array.h"
#include "src/tint/lang/core/type/bool.h"
#include "src/tint/lang/core/type/f16.h"
@@ -56,6 +57,7 @@
#include "src/tint/lang/core/type/i32.h"
#include "src/tint/lang/core/type/matrix.h"
#include "src/tint/lang/core/type/pointer.h"
+#include "src/tint/lang/core/type/storage_texture.h"
#include "src/tint/lang/core/type/u32.h"
#include "src/tint/lang/core/type/vector.h"
#include "src/tint/lang/core/type/void.h"
@@ -350,6 +352,7 @@
EmitStructType(s);
out << StructName(s);
},
+ [&](const core::type::Texture* t) { EmitTextureType(out, t); },
// TODO(dsinclair): Handle remaining types
TINT_ICE_ON_NO_MATCH);
@@ -434,6 +437,76 @@
}
}
+ void EmitTextureType(StringStream& out, const core::type::Texture* t) {
+ TINT_ASSERT(!t->Is<core::type::ExternalTexture>());
+
+ auto* storage = t->As<core::type::StorageTexture>();
+
+ out << "highp ";
+
+ if (storage) {
+ switch (storage->Access()) {
+ case core::Access::kRead:
+ out << "readonly ";
+ break;
+ case core::Access::kWrite:
+ out << "writeonly ";
+ break;
+ case core::Access::kReadWrite: {
+ // ESSL 3.1 SPEC (chapter 4.9, Memory Access Qualifiers):
+ // Except for image variables qualified with the format qualifiers r32f, r32i,
+ // and r32ui, image variables must specify either memory qualifier readonly or
+ // the memory qualifier writeonly.
+ switch (storage->TexelFormat()) {
+ case core::TexelFormat::kR32Float:
+ case core::TexelFormat::kR32Sint:
+ case core::TexelFormat::kR32Uint:
+ break;
+ default:
+ TINT_UNREACHABLE();
+ }
+ break;
+ }
+ default:
+ TINT_UNREACHABLE();
+ }
+ }
+ auto* subtype = storage ? storage->Type() : nullptr;
+
+ tint::Switch(
+ subtype, //
+ [&](const core::type::F32*) {}, //
+ [&](const core::type::I32*) { out << "i"; },
+ [&](const core::type::U32*) { out << "u"; }, //
+ TINT_ICE_ON_NO_MATCH);
+
+ out << "image";
+
+ switch (t->Dim()) {
+ case core::type::TextureDimension::k1d:
+ TINT_ASSERT(!storage);
+ out << "1D";
+ break;
+ case core::type::TextureDimension::k2d:
+ out << "2D";
+ break;
+ case core::type::TextureDimension::k2dArray:
+ out << "2DArray";
+ break;
+ case core::type::TextureDimension::k3d:
+ out << "3D";
+ break;
+ case core::type::TextureDimension::kCube:
+ out << "Cube";
+ break;
+ case core::type::TextureDimension::kCubeArray:
+ out << "CubeArray";
+ break;
+ default:
+ TINT_UNREACHABLE();
+ }
+ }
+
/// Emit a return instruction
/// @param r the return instruction
void EmitReturn(const core::ir::Return* r) {
diff --git a/src/tint/lang/glsl/writer/type_test.cc b/src/tint/lang/glsl/writer/type_test.cc
index b90b222..fb90160 100644
--- a/src/tint/lang/glsl/writer/type_test.cc
+++ b/src/tint/lang/glsl/writer/type_test.cc
@@ -645,42 +645,116 @@
struct GlslStorageTextureData {
core::type::TextureDimension dim;
+ core::Access access;
+ TextureDataType datatype;
std::string result;
};
inline std::ostream& operator<<(std::ostream& out, GlslStorageTextureData data) {
StringStream str;
- str << data.dim;
+ str << data.dim << " " << data.access << " " << static_cast<uint8_t>(data.datatype);
return out << str.str();
}
using GlslWriterStorageTexturesTest = GlslWriterTestWithParam<GlslStorageTextureData>;
// TODO(dsinclair): Add storage texture support
-TEST_P(GlslWriterStorageTexturesTest, DISABLED_Emit) {
+TEST_P(GlslWriterStorageTexturesTest, Emit) {
auto params = GetParam();
- auto* f32 = ty.f32();
+ const core::type::Type* subtype = nullptr;
+ switch (params.datatype) {
+ case TextureDataType::kF32:
+ subtype = ty.f32();
+ break;
+ case TextureDataType::kI32:
+ subtype = ty.i32();
+ break;
+ case TextureDataType::kU32:
+ subtype = ty.u32();
+ break;
+ }
auto s = ty.Get<core::type::StorageTexture>(params.dim, core::TexelFormat::kR32Float,
- core::Access::kWrite, f32);
- auto* func = b.Function("foo", ty.void_(), core::ir::Function::PipelineStage::kCompute);
+ params.access, subtype);
+ auto* func = b.Function("foo", ty.void_());
auto* param = b.FunctionParam("a", s);
func->SetParams({param});
func->SetWorkgroupSize(1, 1, 1);
b.Append(func->Block(), [&] { b.Return(func); });
ASSERT_TRUE(Generate()) << err_ << output_.glsl;
- EXPECT_EQ(output_.glsl, R"(
-layout(local_size_x = 1, local_size_y = 1, local_size_z = 1) in;
-void main()" + params.result +
+ EXPECT_EQ(output_.glsl, GlslHeader() + R"(
+void foo(highp )" + params.result +
R"( a) {
}
+layout(local_size_x = 1, local_size_y = 1, local_size_z = 1) in;
+void main() {
+}
)");
}
INSTANTIATE_TEST_SUITE_P(
GlslWriterTest,
GlslWriterStorageTexturesTest,
- testing::Values(GlslStorageTextureData{core::type::TextureDimension::k1d, "image1D"},
- GlslStorageTextureData{core::type::TextureDimension::k2d, "image2D"},
- GlslStorageTextureData{core::type::TextureDimension::k2dArray, "image2DArray"},
- GlslStorageTextureData{core::type::TextureDimension::k3d, "image3D"}));
+ testing::Values(
+ GlslStorageTextureData{core::type::TextureDimension::k2d, core::Access::kRead,
+ TextureDataType::kF32, "readonly image2D"},
+ GlslStorageTextureData{core::type::TextureDimension::k2dArray, core::Access::kRead,
+ TextureDataType::kF32, "readonly image2DArray"},
+ GlslStorageTextureData{core::type::TextureDimension::k3d, core::Access::kRead,
+ TextureDataType::kF32, "readonly image3D"},
+
+ GlslStorageTextureData{core::type::TextureDimension::k2d, core::Access::kWrite,
+ TextureDataType::kF32, "writeonly image2D"},
+ GlslStorageTextureData{core::type::TextureDimension::k2dArray, core::Access::kWrite,
+ TextureDataType::kF32, "writeonly image2DArray"},
+ GlslStorageTextureData{core::type::TextureDimension::k3d, core::Access::kWrite,
+ TextureDataType::kF32, "writeonly image3D"},
+
+ GlslStorageTextureData{core::type::TextureDimension::k2d, core::Access::kReadWrite,
+ TextureDataType::kF32, "image2D"},
+ GlslStorageTextureData{core::type::TextureDimension::k2dArray, core::Access::kReadWrite,
+ TextureDataType::kF32, "image2DArray"},
+ GlslStorageTextureData{core::type::TextureDimension::k3d, core::Access::kReadWrite,
+ TextureDataType::kF32, "image3D"},
+
+ GlslStorageTextureData{core::type::TextureDimension::k2d, core::Access::kRead,
+ TextureDataType::kI32, "readonly iimage2D"},
+ GlslStorageTextureData{core::type::TextureDimension::k2dArray, core::Access::kRead,
+ TextureDataType::kI32, "readonly iimage2DArray"},
+ GlslStorageTextureData{core::type::TextureDimension::k3d, core::Access::kRead,
+ TextureDataType::kI32, "readonly iimage3D"},
+
+ GlslStorageTextureData{core::type::TextureDimension::k2d, core::Access::kWrite,
+ TextureDataType::kI32, "writeonly iimage2D"},
+ GlslStorageTextureData{core::type::TextureDimension::k2dArray, core::Access::kWrite,
+ TextureDataType::kI32, "writeonly iimage2DArray"},
+ GlslStorageTextureData{core::type::TextureDimension::k3d, core::Access::kWrite,
+ TextureDataType::kI32, "writeonly iimage3D"},
+
+ GlslStorageTextureData{core::type::TextureDimension::k2d, core::Access::kReadWrite,
+ TextureDataType::kI32, "iimage2D"},
+ GlslStorageTextureData{core::type::TextureDimension::k2dArray, core::Access::kReadWrite,
+ TextureDataType::kI32, "iimage2DArray"},
+ GlslStorageTextureData{core::type::TextureDimension::k3d, core::Access::kReadWrite,
+ TextureDataType::kI32, "iimage3D"},
+
+ GlslStorageTextureData{core::type::TextureDimension::k2d, core::Access::kRead,
+ TextureDataType::kU32, "readonly uimage2D"},
+ GlslStorageTextureData{core::type::TextureDimension::k2dArray, core::Access::kRead,
+ TextureDataType::kU32, "readonly uimage2DArray"},
+ GlslStorageTextureData{core::type::TextureDimension::k3d, core::Access::kRead,
+ TextureDataType::kU32, "readonly uimage3D"},
+
+ GlslStorageTextureData{core::type::TextureDimension::k2d, core::Access::kWrite,
+ TextureDataType::kU32, "writeonly uimage2D"},
+ GlslStorageTextureData{core::type::TextureDimension::k2dArray, core::Access::kWrite,
+ TextureDataType::kU32, "writeonly uimage2DArray"},
+ GlslStorageTextureData{core::type::TextureDimension::k3d, core::Access::kWrite,
+ TextureDataType::kU32, "writeonly uimage3D"},
+
+ GlslStorageTextureData{core::type::TextureDimension::k2d, core::Access::kReadWrite,
+ TextureDataType::kU32, "uimage2D"},
+ GlslStorageTextureData{core::type::TextureDimension::k2dArray, core::Access::kReadWrite,
+ TextureDataType::kU32, "uimage2DArray"},
+ GlslStorageTextureData{core::type::TextureDimension::k3d, core::Access::kReadWrite,
+ TextureDataType::kU32, "uimage3D"}));
} // namespace
} // namespace tint::glsl::writer
diff --git a/test/tint/builtins/gen/literal/textureDimensions/01e21e.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureDimensions/01e21e.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureDimensions/01e21e.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureDimensions/01e21e.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureDimensions/01edb1.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureDimensions/01edb1.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureDimensions/01edb1.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureDimensions/01edb1.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureDimensions/0276ec.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureDimensions/0276ec.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureDimensions/0276ec.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureDimensions/0276ec.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureDimensions/029589.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureDimensions/029589.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureDimensions/029589.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureDimensions/029589.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureDimensions/033195.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureDimensions/033195.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureDimensions/033195.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureDimensions/033195.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureDimensions/038847.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureDimensions/038847.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureDimensions/038847.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureDimensions/038847.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureDimensions/03f81e.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureDimensions/03f81e.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureDimensions/03f81e.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureDimensions/03f81e.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureDimensions/0973c9.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureDimensions/0973c9.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureDimensions/0973c9.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureDimensions/0973c9.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureDimensions/0de70c.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureDimensions/0de70c.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureDimensions/0de70c.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureDimensions/0de70c.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureDimensions/18160d.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureDimensions/18160d.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureDimensions/18160d.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureDimensions/18160d.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureDimensions/20eaad.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureDimensions/20eaad.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureDimensions/20eaad.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureDimensions/20eaad.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureDimensions/282978.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureDimensions/282978.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureDimensions/282978.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureDimensions/282978.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureDimensions/283b58.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureDimensions/283b58.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureDimensions/283b58.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureDimensions/283b58.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureDimensions/2a58b7.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureDimensions/2a58b7.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureDimensions/2a58b7.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureDimensions/2a58b7.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureDimensions/325338.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureDimensions/325338.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureDimensions/325338.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureDimensions/325338.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureDimensions/36eeb7.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureDimensions/36eeb7.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureDimensions/36eeb7.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureDimensions/36eeb7.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureDimensions/38c9ca.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureDimensions/38c9ca.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureDimensions/38c9ca.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureDimensions/38c9ca.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureDimensions/427f92.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureDimensions/427f92.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureDimensions/427f92.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureDimensions/427f92.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureDimensions/4df14c.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureDimensions/4df14c.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureDimensions/4df14c.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureDimensions/4df14c.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureDimensions/55fdeb.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureDimensions/55fdeb.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureDimensions/55fdeb.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureDimensions/55fdeb.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureDimensions/5703b3.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureDimensions/5703b3.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureDimensions/5703b3.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureDimensions/5703b3.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureDimensions/578e75.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureDimensions/578e75.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureDimensions/578e75.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureDimensions/578e75.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureDimensions/579eee.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureDimensions/579eee.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureDimensions/579eee.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureDimensions/579eee.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureDimensions/70dd33.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureDimensions/70dd33.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureDimensions/70dd33.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureDimensions/70dd33.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureDimensions/715917.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureDimensions/715917.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureDimensions/715917.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureDimensions/715917.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureDimensions/740e7c.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureDimensions/740e7c.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureDimensions/740e7c.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureDimensions/740e7c.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureDimensions/795fbb.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureDimensions/795fbb.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureDimensions/795fbb.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureDimensions/795fbb.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureDimensions/7c7c64.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureDimensions/7c7c64.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureDimensions/7c7c64.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureDimensions/7c7c64.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureDimensions/7ea4b5.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureDimensions/7ea4b5.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureDimensions/7ea4b5.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureDimensions/7ea4b5.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureDimensions/8243a1.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureDimensions/8243a1.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureDimensions/8243a1.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureDimensions/8243a1.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureDimensions/835f90.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureDimensions/835f90.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureDimensions/835f90.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureDimensions/835f90.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureDimensions/8a2b17.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureDimensions/8a2b17.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureDimensions/8a2b17.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureDimensions/8a2b17.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureDimensions/8b9906.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureDimensions/8b9906.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureDimensions/8b9906.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureDimensions/8b9906.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureDimensions/8bd369.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureDimensions/8bd369.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureDimensions/8bd369.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureDimensions/8bd369.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureDimensions/91e3b4.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureDimensions/91e3b4.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureDimensions/91e3b4.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureDimensions/91e3b4.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureDimensions/a105a5.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureDimensions/a105a5.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureDimensions/a105a5.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureDimensions/a105a5.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureDimensions/a14386.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureDimensions/a14386.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureDimensions/a14386.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureDimensions/a14386.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureDimensions/a7ae4c.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureDimensions/a7ae4c.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureDimensions/a7ae4c.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureDimensions/a7ae4c.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureDimensions/ae4595.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureDimensions/ae4595.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureDimensions/ae4595.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureDimensions/ae4595.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureDimensions/ae75a7.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureDimensions/ae75a7.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureDimensions/ae75a7.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureDimensions/ae75a7.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureDimensions/b16352.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureDimensions/b16352.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureDimensions/b16352.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureDimensions/b16352.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureDimensions/b284b8.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureDimensions/b284b8.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureDimensions/b284b8.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureDimensions/b284b8.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureDimensions/b5d68e.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureDimensions/b5d68e.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureDimensions/b5d68e.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureDimensions/b5d68e.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureDimensions/bc96f6.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureDimensions/bc96f6.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureDimensions/bc96f6.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureDimensions/bc96f6.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureDimensions/c27466.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureDimensions/c27466.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureDimensions/c27466.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureDimensions/c27466.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureDimensions/c6b985.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureDimensions/c6b985.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureDimensions/c6b985.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureDimensions/c6b985.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureDimensions/c7ea63.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureDimensions/c7ea63.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureDimensions/c7ea63.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureDimensions/c7ea63.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureDimensions/c82420.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureDimensions/c82420.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureDimensions/c82420.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureDimensions/c82420.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureDimensions/ca10cc.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureDimensions/ca10cc.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureDimensions/ca10cc.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureDimensions/ca10cc.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureDimensions/deb3c0.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureDimensions/deb3c0.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureDimensions/deb3c0.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureDimensions/deb3c0.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureDimensions/e4f021.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureDimensions/e4f021.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureDimensions/e4f021.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureDimensions/e4f021.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureDimensions/e50eb8.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureDimensions/e50eb8.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureDimensions/e50eb8.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureDimensions/e50eb8.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureDimensions/e824b6.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureDimensions/e824b6.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureDimensions/e824b6.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureDimensions/e824b6.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureDimensions/eb10d6.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureDimensions/eb10d6.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureDimensions/eb10d6.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureDimensions/eb10d6.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureDimensions/eb1249.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureDimensions/eb1249.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureDimensions/eb1249.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureDimensions/eb1249.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureDimensions/eb9f4d.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureDimensions/eb9f4d.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureDimensions/eb9f4d.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureDimensions/eb9f4d.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureDimensions/f406ff.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureDimensions/f406ff.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureDimensions/f406ff.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureDimensions/f406ff.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureDimensions/f55a94.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureDimensions/f55a94.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureDimensions/f55a94.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureDimensions/f55a94.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureDimensions/f93ece.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureDimensions/f93ece.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureDimensions/f93ece.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureDimensions/f93ece.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureDimensions/f94e55.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureDimensions/f94e55.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureDimensions/f94e55.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureDimensions/f94e55.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureLoad/012e11.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureLoad/012e11.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureLoad/012e11.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/012e11.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureLoad/02c48d.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureLoad/02c48d.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureLoad/02c48d.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/02c48d.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureLoad/03e03e.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureLoad/03e03e.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureLoad/03e03e.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/03e03e.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureLoad/054350.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureLoad/054350.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureLoad/054350.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/054350.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureLoad/0b515a.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureLoad/0b515a.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureLoad/0b515a.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/0b515a.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureLoad/126466.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureLoad/126466.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureLoad/126466.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/126466.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureLoad/14cc4c.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureLoad/14cc4c.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureLoad/14cc4c.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/14cc4c.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureLoad/170593.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureLoad/170593.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureLoad/170593.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/170593.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureLoad/17095b.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureLoad/17095b.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureLoad/17095b.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/17095b.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureLoad/1bc5ab.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureLoad/1bc5ab.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureLoad/1bc5ab.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/1bc5ab.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureLoad/1d43ae.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureLoad/1d43ae.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureLoad/1d43ae.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/1d43ae.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureLoad/1e6baa.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureLoad/1e6baa.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureLoad/1e6baa.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/1e6baa.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureLoad/1fde63.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureLoad/1fde63.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureLoad/1fde63.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/1fde63.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureLoad/25b67f.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureLoad/25b67f.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureLoad/25b67f.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/25b67f.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureLoad/26b8f6.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureLoad/26b8f6.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureLoad/26b8f6.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/26b8f6.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureLoad/2cee30.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureLoad/2cee30.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureLoad/2cee30.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/2cee30.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureLoad/2dbfc2.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureLoad/2dbfc2.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureLoad/2dbfc2.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/2dbfc2.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureLoad/2eaf31.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureLoad/2eaf31.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureLoad/2eaf31.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/2eaf31.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureLoad/32a7b8.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureLoad/32a7b8.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureLoad/32a7b8.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/32a7b8.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureLoad/34d97c.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureLoad/34d97c.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureLoad/34d97c.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/34d97c.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureLoad/35a5e2.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureLoad/35a5e2.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureLoad/35a5e2.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/35a5e2.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureLoad/39016c.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureLoad/39016c.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureLoad/39016c.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/39016c.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureLoad/395447.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureLoad/395447.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureLoad/395447.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/395447.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureLoad/3a2350.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureLoad/3a2350.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureLoad/3a2350.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/3a2350.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureLoad/3cfb9c.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureLoad/3cfb9c.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureLoad/3cfb9c.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/3cfb9c.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureLoad/3e16a8.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureLoad/3e16a8.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureLoad/3e16a8.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/3e16a8.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureLoad/40ee8b.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureLoad/40ee8b.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureLoad/40ee8b.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/40ee8b.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureLoad/4212a1.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureLoad/4212a1.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureLoad/4212a1.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/4212a1.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureLoad/424afd.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureLoad/424afd.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureLoad/424afd.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/424afd.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureLoad/42a631.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureLoad/42a631.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureLoad/42a631.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/42a631.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureLoad/43cd86.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureLoad/43cd86.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureLoad/43cd86.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/43cd86.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureLoad/4542ae.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureLoad/4542ae.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureLoad/4542ae.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/4542ae.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureLoad/469912.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureLoad/469912.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureLoad/469912.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/469912.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureLoad/473d3e.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureLoad/473d3e.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureLoad/473d3e.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/473d3e.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureLoad/482627.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureLoad/482627.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureLoad/482627.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/482627.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureLoad/4a5c55.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureLoad/4a5c55.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureLoad/4a5c55.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/4a5c55.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureLoad/4c15b2.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureLoad/4c15b2.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureLoad/4c15b2.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/4c15b2.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureLoad/4c1a1e.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureLoad/4c1a1e.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureLoad/4c1a1e.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/4c1a1e.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureLoad/4ccf9a.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureLoad/4ccf9a.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureLoad/4ccf9a.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/4ccf9a.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureLoad/4e2c5c.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureLoad/4e2c5c.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureLoad/4e2c5c.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/4e2c5c.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureLoad/4f90bb.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureLoad/4f90bb.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureLoad/4f90bb.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/4f90bb.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureLoad/5154e1.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureLoad/5154e1.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureLoad/5154e1.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/5154e1.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureLoad/53941c.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureLoad/53941c.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureLoad/53941c.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/53941c.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureLoad/54fb38.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureLoad/54fb38.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureLoad/54fb38.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/54fb38.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureLoad/56a000.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureLoad/56a000.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureLoad/56a000.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/56a000.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureLoad/5b0f5b.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureLoad/5b0f5b.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureLoad/5b0f5b.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/5b0f5b.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureLoad/5b4947.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureLoad/5b4947.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureLoad/5b4947.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/5b4947.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureLoad/5c69f8.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureLoad/5c69f8.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureLoad/5c69f8.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/5c69f8.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureLoad/5e17a7.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureLoad/5e17a7.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureLoad/5e17a7.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/5e17a7.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureLoad/5e1843.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureLoad/5e1843.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureLoad/5e1843.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/5e1843.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureLoad/61e2e8.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureLoad/61e2e8.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureLoad/61e2e8.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/61e2e8.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureLoad/622278.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureLoad/622278.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureLoad/622278.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/622278.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureLoad/64c372.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureLoad/64c372.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureLoad/64c372.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/64c372.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureLoad/666010.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureLoad/666010.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureLoad/666010.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/666010.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureLoad/68d273.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureLoad/68d273.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureLoad/68d273.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/68d273.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureLoad/6a6871.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureLoad/6a6871.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureLoad/6a6871.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/6a6871.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureLoad/6b8ba6.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureLoad/6b8ba6.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureLoad/6b8ba6.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/6b8ba6.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureLoad/6ba9ab.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureLoad/6ba9ab.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureLoad/6ba9ab.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/6ba9ab.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureLoad/6bf3e2.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureLoad/6bf3e2.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureLoad/6bf3e2.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/6bf3e2.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureLoad/6d7bb5.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureLoad/6d7bb5.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureLoad/6d7bb5.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/6d7bb5.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureLoad/6e903f.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureLoad/6e903f.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureLoad/6e903f.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/6e903f.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureLoad/6f0ea8.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureLoad/6f0ea8.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureLoad/6f0ea8.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/6f0ea8.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureLoad/6f8927.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureLoad/6f8927.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureLoad/6f8927.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/6f8927.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureLoad/72c9c3.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureLoad/72c9c3.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureLoad/72c9c3.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/72c9c3.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureLoad/742f1b.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureLoad/742f1b.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureLoad/742f1b.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/742f1b.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureLoad/74a387.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureLoad/74a387.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureLoad/74a387.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/74a387.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureLoad/7dd3d5.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureLoad/7dd3d5.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureLoad/7dd3d5.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/7dd3d5.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureLoad/7e5cbc.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureLoad/7e5cbc.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureLoad/7e5cbc.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/7e5cbc.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureLoad/80dae1.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureLoad/80dae1.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureLoad/80dae1.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/80dae1.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureLoad/848d85.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureLoad/848d85.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureLoad/848d85.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/848d85.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureLoad/84a438.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureLoad/84a438.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureLoad/84a438.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/84a438.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureLoad/878e24.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureLoad/878e24.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureLoad/878e24.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/878e24.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureLoad/87f0a6.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureLoad/87f0a6.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureLoad/87f0a6.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/87f0a6.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureLoad/881349.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureLoad/881349.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureLoad/881349.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/881349.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureLoad/8b62fb.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureLoad/8b62fb.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureLoad/8b62fb.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/8b62fb.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureLoad/8c6176.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureLoad/8c6176.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureLoad/8c6176.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/8c6176.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureLoad/8d64c3.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureLoad/8d64c3.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureLoad/8d64c3.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/8d64c3.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureLoad/8e68c9.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureLoad/8e68c9.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureLoad/8e68c9.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/8e68c9.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureLoad/8fc29b.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureLoad/8fc29b.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureLoad/8fc29b.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/8fc29b.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureLoad/91ede5.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureLoad/91ede5.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureLoad/91ede5.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/91ede5.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureLoad/9242e7.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureLoad/9242e7.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureLoad/9242e7.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/9242e7.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureLoad/92dd61.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureLoad/92dd61.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureLoad/92dd61.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/92dd61.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureLoad/99d8fa.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureLoad/99d8fa.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureLoad/99d8fa.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/99d8fa.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureLoad/9fa9fd.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureLoad/9fa9fd.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureLoad/9fa9fd.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/9fa9fd.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureLoad/9fd7be.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureLoad/9fd7be.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureLoad/9fd7be.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/9fd7be.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureLoad/a2b3f4.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureLoad/a2b3f4.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureLoad/a2b3f4.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/a2b3f4.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureLoad/a3733f.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureLoad/a3733f.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureLoad/a3733f.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/a3733f.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureLoad/a3f122.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureLoad/a3f122.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureLoad/a3f122.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/a3f122.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureLoad/a548a8.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureLoad/a548a8.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureLoad/a548a8.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/a548a8.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureLoad/a54e11.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureLoad/a54e11.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureLoad/a54e11.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/a54e11.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureLoad/a5c4e2.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureLoad/a5c4e2.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureLoad/a5c4e2.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/a5c4e2.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureLoad/a64b1d.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureLoad/a64b1d.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureLoad/a64b1d.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/a64b1d.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureLoad/a7bcb4.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureLoad/a7bcb4.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureLoad/a7bcb4.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/a7bcb4.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureLoad/a7c171.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureLoad/a7c171.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureLoad/a7c171.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/a7c171.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureLoad/a92b18.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureLoad/a92b18.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureLoad/a92b18.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/a92b18.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureLoad/aa2579.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureLoad/aa2579.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureLoad/aa2579.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/aa2579.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureLoad/aa6130.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureLoad/aa6130.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureLoad/aa6130.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/aa6130.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureLoad/aae9c3.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureLoad/aae9c3.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureLoad/aae9c3.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/aae9c3.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureLoad/acf22f.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureLoad/acf22f.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureLoad/acf22f.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/acf22f.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureLoad/af0507.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureLoad/af0507.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureLoad/af0507.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/af0507.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureLoad/b1ca35.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureLoad/b1ca35.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureLoad/b1ca35.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/b1ca35.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureLoad/b4d6c4.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureLoad/b4d6c4.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureLoad/b4d6c4.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/b4d6c4.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureLoad/b60a86.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureLoad/b60a86.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureLoad/b60a86.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/b60a86.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureLoad/b60db7.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureLoad/b60db7.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureLoad/b60db7.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/b60db7.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureLoad/ba74b2.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureLoad/ba74b2.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureLoad/ba74b2.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/ba74b2.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureLoad/babdf3.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureLoad/babdf3.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureLoad/babdf3.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/babdf3.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureLoad/bba04a.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureLoad/bba04a.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureLoad/bba04a.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/bba04a.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureLoad/bbb762.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureLoad/bbb762.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureLoad/bbb762.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/bbb762.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureLoad/bc882d.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureLoad/bc882d.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureLoad/bc882d.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/bc882d.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureLoad/bd990a.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureLoad/bd990a.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureLoad/bd990a.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/bd990a.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureLoad/bdc67a.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureLoad/bdc67a.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureLoad/bdc67a.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/bdc67a.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureLoad/c5c86d.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureLoad/c5c86d.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureLoad/c5c86d.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/c5c86d.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureLoad/c7e313.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureLoad/c7e313.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureLoad/c7e313.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/c7e313.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureLoad/c98bf4.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureLoad/c98bf4.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureLoad/c98bf4.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/c98bf4.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureLoad/c9b083.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureLoad/c9b083.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureLoad/c9b083.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/c9b083.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureLoad/cac876.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureLoad/cac876.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureLoad/cac876.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/cac876.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureLoad/cdbcf6.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureLoad/cdbcf6.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureLoad/cdbcf6.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/cdbcf6.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureLoad/cdccd2.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureLoad/cdccd2.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureLoad/cdccd2.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/cdccd2.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureLoad/cddf6b.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureLoad/cddf6b.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureLoad/cddf6b.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/cddf6b.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureLoad/d0e351.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureLoad/d0e351.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureLoad/d0e351.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/d0e351.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureLoad/d37a08.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureLoad/d37a08.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureLoad/d37a08.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/d37a08.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureLoad/d3d8fc.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureLoad/d3d8fc.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureLoad/d3d8fc.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/d3d8fc.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureLoad/d41c72.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureLoad/d41c72.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureLoad/d41c72.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/d41c72.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureLoad/d72de9.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureLoad/d72de9.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureLoad/d72de9.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/d72de9.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureLoad/d7996a.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureLoad/d7996a.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureLoad/d7996a.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/d7996a.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureLoad/d79c5c.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureLoad/d79c5c.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureLoad/d79c5c.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/d79c5c.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureLoad/d80ff3.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureLoad/d80ff3.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureLoad/d80ff3.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/d80ff3.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureLoad/d8be5a.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureLoad/d8be5a.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureLoad/d8be5a.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/d8be5a.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureLoad/d91f37.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureLoad/d91f37.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureLoad/d91f37.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/d91f37.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureLoad/dab04f.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureLoad/dab04f.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureLoad/dab04f.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/dab04f.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureLoad/dd5859.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureLoad/dd5859.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureLoad/dd5859.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/dd5859.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureLoad/de5a0e.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureLoad/de5a0e.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureLoad/de5a0e.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/de5a0e.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureLoad/defd9a.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureLoad/defd9a.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureLoad/defd9a.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/defd9a.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureLoad/e1c3cf.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureLoad/e1c3cf.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureLoad/e1c3cf.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/e1c3cf.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureLoad/e2b3a1.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureLoad/e2b3a1.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureLoad/e2b3a1.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/e2b3a1.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureLoad/e2d7da.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureLoad/e2d7da.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureLoad/e2d7da.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/e2d7da.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureLoad/e33285.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureLoad/e33285.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureLoad/e33285.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/e33285.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureLoad/e4051a.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureLoad/e4051a.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureLoad/e4051a.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/e4051a.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureLoad/e9eb65.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureLoad/e9eb65.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureLoad/e9eb65.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/e9eb65.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureLoad/ed55a8.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureLoad/ed55a8.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureLoad/ed55a8.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/ed55a8.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureLoad/ef2ec3.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureLoad/ef2ec3.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureLoad/ef2ec3.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/ef2ec3.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureLoad/f0514a.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureLoad/f0514a.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureLoad/f0514a.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/f0514a.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureLoad/f2bdd4.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureLoad/f2bdd4.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureLoad/f2bdd4.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/f2bdd4.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureLoad/f2c311.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureLoad/f2c311.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureLoad/f2c311.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/f2c311.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureLoad/f5fbc6.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureLoad/f5fbc6.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureLoad/f5fbc6.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/f5fbc6.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureLoad/f7f3bc.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureLoad/f7f3bc.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureLoad/f7f3bc.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/f7f3bc.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureLoad/f82eb2.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureLoad/f82eb2.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureLoad/f82eb2.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/f82eb2.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureLoad/fc47ff.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureLoad/fc47ff.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureLoad/fc47ff.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/fc47ff.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureLoad/fd9606.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureLoad/fd9606.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureLoad/fd9606.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/fd9606.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureLoad/fe2c1b.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureLoad/fe2c1b.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureLoad/fe2c1b.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/fe2c1b.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureNumLayers/0856ae.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureNumLayers/0856ae.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureNumLayers/0856ae.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureNumLayers/0856ae.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureNumLayers/17ccad.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureNumLayers/17ccad.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureNumLayers/17ccad.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureNumLayers/17ccad.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureNumLayers/24d572.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureNumLayers/24d572.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureNumLayers/24d572.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureNumLayers/24d572.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureNumLayers/2a48dc.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureNumLayers/2a48dc.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureNumLayers/2a48dc.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureNumLayers/2a48dc.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureNumLayers/327d70.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureNumLayers/327d70.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureNumLayers/327d70.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureNumLayers/327d70.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureNumLayers/32ca10.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureNumLayers/32ca10.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureNumLayers/32ca10.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureNumLayers/32ca10.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureNumLayers/380a60.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureNumLayers/380a60.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureNumLayers/380a60.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureNumLayers/380a60.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureNumLayers/54a654.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureNumLayers/54a654.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureNumLayers/54a654.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureNumLayers/54a654.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureNumLayers/5ee8f2.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureNumLayers/5ee8f2.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureNumLayers/5ee8f2.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureNumLayers/5ee8f2.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureNumLayers/622aa2.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureNumLayers/622aa2.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureNumLayers/622aa2.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureNumLayers/622aa2.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureNumLayers/6da0eb.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureNumLayers/6da0eb.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureNumLayers/6da0eb.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureNumLayers/6da0eb.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureNumLayers/a54655.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureNumLayers/a54655.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureNumLayers/a54655.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureNumLayers/a54655.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureNumLayers/aac630.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureNumLayers/aac630.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureNumLayers/aac630.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureNumLayers/aac630.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureNumLayers/d3f655.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureNumLayers/d3f655.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureNumLayers/d3f655.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureNumLayers/d3f655.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureNumLayers/e47aac.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureNumLayers/e47aac.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureNumLayers/e47aac.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureNumLayers/e47aac.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureStore/036d0e.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureStore/036d0e.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureStore/036d0e.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/036d0e.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureStore/03e7a0.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureStore/03e7a0.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureStore/03e7a0.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/03e7a0.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureStore/042b06.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureStore/042b06.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureStore/042b06.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/042b06.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureStore/052a4e.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureStore/052a4e.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureStore/052a4e.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/052a4e.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureStore/053664.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureStore/053664.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureStore/053664.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/053664.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureStore/09e4d5.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureStore/09e4d5.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureStore/09e4d5.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/09e4d5.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureStore/0ad124.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureStore/0ad124.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureStore/0ad124.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/0ad124.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureStore/0ade9a.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureStore/0ade9a.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureStore/0ade9a.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/0ade9a.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureStore/101325.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureStore/101325.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureStore/101325.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/101325.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureStore/145061.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureStore/145061.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureStore/145061.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/145061.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureStore/178e69.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureStore/178e69.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureStore/178e69.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/178e69.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureStore/195d1b.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureStore/195d1b.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureStore/195d1b.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/195d1b.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureStore/197637.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureStore/197637.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureStore/197637.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/197637.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureStore/1a6c0b.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureStore/1a6c0b.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureStore/1a6c0b.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/1a6c0b.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureStore/1af236.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureStore/1af236.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureStore/1af236.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/1af236.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureStore/2046db.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureStore/2046db.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureStore/2046db.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/2046db.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureStore/2173fd.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureStore/2173fd.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureStore/2173fd.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/2173fd.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureStore/26a26d.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureStore/26a26d.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureStore/26a26d.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/26a26d.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureStore/272f5a.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureStore/272f5a.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureStore/272f5a.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/272f5a.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureStore/28e109.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureStore/28e109.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureStore/28e109.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/28e109.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureStore/2a60c9.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureStore/2a60c9.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureStore/2a60c9.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/2a60c9.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureStore/2addd6.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureStore/2addd6.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureStore/2addd6.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/2addd6.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureStore/2c76db.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureStore/2c76db.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureStore/2c76db.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/2c76db.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureStore/2e512f.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureStore/2e512f.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureStore/2e512f.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/2e512f.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureStore/2f29ea.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureStore/2f29ea.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureStore/2f29ea.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/2f29ea.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureStore/3310d3.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureStore/3310d3.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureStore/3310d3.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/3310d3.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureStore/345332.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureStore/345332.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureStore/345332.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/345332.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureStore/3d96a4.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureStore/3d96a4.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureStore/3d96a4.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/3d96a4.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureStore/3e0dc4.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureStore/3e0dc4.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureStore/3e0dc4.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/3e0dc4.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureStore/3f61ca.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureStore/3f61ca.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureStore/3f61ca.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/3f61ca.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureStore/43d1df.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureStore/43d1df.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureStore/43d1df.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/43d1df.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureStore/441222.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureStore/441222.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureStore/441222.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/441222.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureStore/4483e7.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureStore/4483e7.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureStore/4483e7.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/4483e7.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureStore/44b372.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureStore/44b372.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureStore/44b372.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/44b372.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureStore/473ead.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureStore/473ead.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureStore/473ead.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/473ead.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureStore/47bd70.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureStore/47bd70.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureStore/47bd70.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/47bd70.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureStore/48cb56.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureStore/48cb56.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureStore/48cb56.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/48cb56.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureStore/4c76b7.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureStore/4c76b7.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureStore/4c76b7.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/4c76b7.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureStore/4cce74.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureStore/4cce74.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureStore/4cce74.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/4cce74.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureStore/4ddf52.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureStore/4ddf52.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureStore/4ddf52.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/4ddf52.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureStore/4e2b3a.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureStore/4e2b3a.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureStore/4e2b3a.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/4e2b3a.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureStore/5030f5.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureStore/5030f5.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureStore/5030f5.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/5030f5.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureStore/51ec82.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureStore/51ec82.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureStore/51ec82.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/51ec82.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureStore/5425ab.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureStore/5425ab.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureStore/5425ab.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/5425ab.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureStore/544f06.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureStore/544f06.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureStore/544f06.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/544f06.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureStore/55f9dc.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureStore/55f9dc.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureStore/55f9dc.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/55f9dc.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureStore/574a31.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureStore/574a31.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureStore/574a31.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/574a31.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureStore/58fc35.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureStore/58fc35.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureStore/58fc35.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/58fc35.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureStore/5a8b41.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureStore/5a8b41.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureStore/5a8b41.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/5a8b41.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureStore/5b17eb.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureStore/5b17eb.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureStore/5b17eb.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/5b17eb.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureStore/5b4522.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureStore/5b4522.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureStore/5b4522.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/5b4522.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureStore/5ee194.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureStore/5ee194.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureStore/5ee194.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/5ee194.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureStore/635584.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureStore/635584.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureStore/635584.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/635584.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureStore/63f34a.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureStore/63f34a.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureStore/63f34a.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/63f34a.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureStore/646dbc.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureStore/646dbc.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureStore/646dbc.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/646dbc.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureStore/65b6aa.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureStore/65b6aa.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureStore/65b6aa.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/65b6aa.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureStore/65ba8b.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureStore/65ba8b.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureStore/65ba8b.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/65ba8b.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureStore/6d1809.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureStore/6d1809.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureStore/6d1809.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/6d1809.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureStore/6d259f.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureStore/6d259f.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureStore/6d259f.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/6d259f.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureStore/6f0c92.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureStore/6f0c92.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureStore/6f0c92.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/6f0c92.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureStore/6f3542.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureStore/6f3542.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureStore/6f3542.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/6f3542.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureStore/6fb99b.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureStore/6fb99b.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureStore/6fb99b.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/6fb99b.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureStore/704e1f.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureStore/704e1f.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureStore/704e1f.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/704e1f.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureStore/706236.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureStore/706236.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureStore/706236.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/706236.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureStore/706560.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureStore/706560.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureStore/706560.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/706560.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureStore/726d6d.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureStore/726d6d.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureStore/726d6d.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/726d6d.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureStore/73a735.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureStore/73a735.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureStore/73a735.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/73a735.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureStore/751256.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureStore/751256.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureStore/751256.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/751256.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureStore/75bbd5.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureStore/75bbd5.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureStore/75bbd5.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/75bbd5.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureStore/7792fa.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureStore/7792fa.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureStore/7792fa.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/7792fa.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureStore/7b8f86.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureStore/7b8f86.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureStore/7b8f86.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/7b8f86.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureStore/7d10e0.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureStore/7d10e0.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureStore/7d10e0.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/7d10e0.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureStore/7dd042.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureStore/7dd042.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureStore/7dd042.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/7dd042.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureStore/7e787a.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureStore/7e787a.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureStore/7e787a.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/7e787a.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureStore/803a10.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureStore/803a10.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureStore/803a10.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/803a10.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureStore/80bf1d.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureStore/80bf1d.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureStore/80bf1d.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/80bf1d.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureStore/818df6.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureStore/818df6.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureStore/818df6.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/818df6.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureStore/820272.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureStore/820272.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureStore/820272.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/820272.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureStore/84d435.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureStore/84d435.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureStore/84d435.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/84d435.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureStore/84f4f4.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureStore/84f4f4.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureStore/84f4f4.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/84f4f4.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureStore/86f713.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureStore/86f713.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureStore/86f713.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/86f713.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureStore/877c92.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureStore/877c92.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureStore/877c92.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/877c92.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureStore/8815b1.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureStore/8815b1.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureStore/8815b1.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/8815b1.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureStore/885921.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureStore/885921.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureStore/885921.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/885921.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureStore/88ce7e.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureStore/88ce7e.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureStore/88ce7e.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/88ce7e.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureStore/8a46ff.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureStore/8a46ff.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureStore/8a46ff.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/8a46ff.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureStore/8a85b9.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureStore/8a85b9.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureStore/8a85b9.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/8a85b9.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureStore/8a8681.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureStore/8a8681.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureStore/8a8681.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/8a8681.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureStore/8ae0bc.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureStore/8ae0bc.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureStore/8ae0bc.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/8ae0bc.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureStore/8ebdc9.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureStore/8ebdc9.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureStore/8ebdc9.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/8ebdc9.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureStore/90960e.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureStore/90960e.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureStore/90960e.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/90960e.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureStore/90a553.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureStore/90a553.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureStore/90a553.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/90a553.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureStore/976636.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureStore/976636.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureStore/976636.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/976636.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureStore/9ba5c1.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureStore/9ba5c1.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureStore/9ba5c1.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/9ba5c1.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureStore/9cea9e.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureStore/9cea9e.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureStore/9cea9e.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/9cea9e.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureStore/9d7c62.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureStore/9d7c62.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureStore/9d7c62.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/9d7c62.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureStore/a14041.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureStore/a14041.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureStore/a14041.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/a14041.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureStore/a19a12.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureStore/a19a12.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureStore/a19a12.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/a19a12.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureStore/a24491.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureStore/a24491.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureStore/a24491.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/a24491.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureStore/a5b88e.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureStore/a5b88e.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureStore/a5b88e.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/a5b88e.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureStore/a5c925.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureStore/a5c925.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureStore/a5c925.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/a5c925.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureStore/a66ca4.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureStore/a66ca4.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureStore/a66ca4.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/a66ca4.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureStore/a702b6.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureStore/a702b6.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureStore/a702b6.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/a702b6.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureStore/a7fc47.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureStore/a7fc47.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureStore/a7fc47.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/a7fc47.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureStore/a9298c.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureStore/a9298c.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureStore/a9298c.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/a9298c.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureStore/ab03b6.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureStore/ab03b6.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureStore/ab03b6.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/ab03b6.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureStore/ab788e.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureStore/ab788e.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureStore/ab788e.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/ab788e.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureStore/ac0a55.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureStore/ac0a55.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureStore/ac0a55.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/ac0a55.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureStore/ae6a2a.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureStore/ae6a2a.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureStore/ae6a2a.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/ae6a2a.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureStore/aedea3.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureStore/aedea3.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureStore/aedea3.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/aedea3.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureStore/b16110.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureStore/b16110.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureStore/b16110.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/b16110.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureStore/b286b4.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureStore/b286b4.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureStore/b286b4.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/b286b4.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureStore/b36bc1.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureStore/b36bc1.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureStore/b36bc1.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/b36bc1.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureStore/b4389e.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureStore/b4389e.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureStore/b4389e.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/b4389e.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureStore/b71c13.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureStore/b71c13.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureStore/b71c13.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/b71c13.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureStore/b89ffb.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureStore/b89ffb.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureStore/b89ffb.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/b89ffb.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureStore/b9c81a.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureStore/b9c81a.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureStore/b9c81a.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/b9c81a.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureStore/b9d863.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureStore/b9d863.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureStore/b9d863.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/b9d863.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureStore/bc1423.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureStore/bc1423.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureStore/bc1423.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/bc1423.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureStore/bd6602.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureStore/bd6602.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureStore/bd6602.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/bd6602.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureStore/c06463.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureStore/c06463.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureStore/c06463.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/c06463.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureStore/c1c664.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureStore/c1c664.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureStore/c1c664.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/c1c664.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureStore/c1f760.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureStore/c1f760.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureStore/c1f760.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/c1f760.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureStore/c33478.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureStore/c33478.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureStore/c33478.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/c33478.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureStore/c63f05.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureStore/c63f05.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureStore/c63f05.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/c63f05.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureStore/c79451.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureStore/c79451.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureStore/c79451.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/c79451.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureStore/ccac20.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureStore/ccac20.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureStore/ccac20.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/ccac20.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureStore/d0d62c.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureStore/d0d62c.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureStore/d0d62c.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/d0d62c.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureStore/d0fadc.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureStore/d0fadc.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureStore/d0fadc.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/d0fadc.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureStore/d19db4.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureStore/d19db4.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureStore/d19db4.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/d19db4.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureStore/d1ab82.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureStore/d1ab82.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureStore/d1ab82.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/d1ab82.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureStore/d3a22b.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureStore/d3a22b.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureStore/d3a22b.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/d3a22b.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureStore/d86d33.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureStore/d86d33.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureStore/d86d33.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/d86d33.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureStore/da530c.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureStore/da530c.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureStore/da530c.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/da530c.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureStore/db5128.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureStore/db5128.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureStore/db5128.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/db5128.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureStore/dd8b29.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureStore/dd8b29.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureStore/dd8b29.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/dd8b29.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureStore/de38e5.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureStore/de38e5.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureStore/de38e5.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/de38e5.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureStore/e077e7.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureStore/e077e7.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureStore/e077e7.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/e077e7.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureStore/e1784d.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureStore/e1784d.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureStore/e1784d.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/e1784d.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureStore/e46fd8.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureStore/e46fd8.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureStore/e46fd8.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/e46fd8.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureStore/e72bdc.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureStore/e72bdc.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureStore/e72bdc.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/e72bdc.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureStore/e87f6e.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureStore/e87f6e.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureStore/e87f6e.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/e87f6e.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureStore/ea30d2.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureStore/ea30d2.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureStore/ea30d2.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/ea30d2.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureStore/ed6198.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureStore/ed6198.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureStore/ed6198.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/ed6198.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureStore/f05928.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureStore/f05928.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureStore/f05928.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/f05928.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureStore/f6f392.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureStore/f6f392.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureStore/f6f392.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/f6f392.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureStore/f8aaf9.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureStore/f8aaf9.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureStore/f8aaf9.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/f8aaf9.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureStore/f975a0.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureStore/f975a0.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureStore/f975a0.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/f975a0.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureStore/fc916e.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureStore/fc916e.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureStore/fc916e.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/fc916e.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/literal/textureStore/ff23b3.wgsl.expected.ir.glsl b/test/tint/builtins/gen/literal/textureStore/ff23b3.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/literal/textureStore/ff23b3.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/ff23b3.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureDimensions/01e21e.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureDimensions/01e21e.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureDimensions/01e21e.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureDimensions/01e21e.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureDimensions/01edb1.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureDimensions/01edb1.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureDimensions/01edb1.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureDimensions/01edb1.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureDimensions/0276ec.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureDimensions/0276ec.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureDimensions/0276ec.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureDimensions/0276ec.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureDimensions/029589.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureDimensions/029589.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureDimensions/029589.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureDimensions/029589.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureDimensions/033195.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureDimensions/033195.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureDimensions/033195.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureDimensions/033195.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureDimensions/038847.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureDimensions/038847.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureDimensions/038847.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureDimensions/038847.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureDimensions/03f81e.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureDimensions/03f81e.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureDimensions/03f81e.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureDimensions/03f81e.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureDimensions/0973c9.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureDimensions/0973c9.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureDimensions/0973c9.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureDimensions/0973c9.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureDimensions/0de70c.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureDimensions/0de70c.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureDimensions/0de70c.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureDimensions/0de70c.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureDimensions/18160d.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureDimensions/18160d.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureDimensions/18160d.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureDimensions/18160d.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureDimensions/20eaad.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureDimensions/20eaad.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureDimensions/20eaad.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureDimensions/20eaad.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureDimensions/282978.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureDimensions/282978.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureDimensions/282978.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureDimensions/282978.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureDimensions/283b58.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureDimensions/283b58.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureDimensions/283b58.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureDimensions/283b58.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureDimensions/2a58b7.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureDimensions/2a58b7.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureDimensions/2a58b7.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureDimensions/2a58b7.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureDimensions/325338.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureDimensions/325338.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureDimensions/325338.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureDimensions/325338.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureDimensions/36eeb7.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureDimensions/36eeb7.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureDimensions/36eeb7.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureDimensions/36eeb7.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureDimensions/38c9ca.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureDimensions/38c9ca.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureDimensions/38c9ca.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureDimensions/38c9ca.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureDimensions/427f92.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureDimensions/427f92.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureDimensions/427f92.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureDimensions/427f92.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureDimensions/4df14c.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureDimensions/4df14c.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureDimensions/4df14c.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureDimensions/4df14c.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureDimensions/55fdeb.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureDimensions/55fdeb.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureDimensions/55fdeb.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureDimensions/55fdeb.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureDimensions/5703b3.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureDimensions/5703b3.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureDimensions/5703b3.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureDimensions/5703b3.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureDimensions/578e75.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureDimensions/578e75.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureDimensions/578e75.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureDimensions/578e75.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureDimensions/579eee.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureDimensions/579eee.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureDimensions/579eee.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureDimensions/579eee.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureDimensions/70dd33.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureDimensions/70dd33.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureDimensions/70dd33.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureDimensions/70dd33.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureDimensions/715917.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureDimensions/715917.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureDimensions/715917.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureDimensions/715917.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureDimensions/740e7c.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureDimensions/740e7c.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureDimensions/740e7c.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureDimensions/740e7c.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureDimensions/795fbb.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureDimensions/795fbb.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureDimensions/795fbb.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureDimensions/795fbb.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureDimensions/7c7c64.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureDimensions/7c7c64.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureDimensions/7c7c64.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureDimensions/7c7c64.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureDimensions/7ea4b5.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureDimensions/7ea4b5.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureDimensions/7ea4b5.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureDimensions/7ea4b5.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureDimensions/8243a1.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureDimensions/8243a1.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureDimensions/8243a1.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureDimensions/8243a1.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureDimensions/835f90.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureDimensions/835f90.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureDimensions/835f90.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureDimensions/835f90.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureDimensions/8a2b17.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureDimensions/8a2b17.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureDimensions/8a2b17.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureDimensions/8a2b17.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureDimensions/8b9906.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureDimensions/8b9906.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureDimensions/8b9906.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureDimensions/8b9906.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureDimensions/8bd369.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureDimensions/8bd369.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureDimensions/8bd369.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureDimensions/8bd369.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureDimensions/91e3b4.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureDimensions/91e3b4.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureDimensions/91e3b4.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureDimensions/91e3b4.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureDimensions/a105a5.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureDimensions/a105a5.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureDimensions/a105a5.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureDimensions/a105a5.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureDimensions/a14386.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureDimensions/a14386.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureDimensions/a14386.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureDimensions/a14386.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureDimensions/a7ae4c.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureDimensions/a7ae4c.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureDimensions/a7ae4c.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureDimensions/a7ae4c.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureDimensions/ae4595.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureDimensions/ae4595.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureDimensions/ae4595.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureDimensions/ae4595.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureDimensions/ae75a7.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureDimensions/ae75a7.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureDimensions/ae75a7.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureDimensions/ae75a7.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureDimensions/b16352.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureDimensions/b16352.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureDimensions/b16352.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureDimensions/b16352.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureDimensions/b284b8.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureDimensions/b284b8.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureDimensions/b284b8.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureDimensions/b284b8.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureDimensions/b5d68e.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureDimensions/b5d68e.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureDimensions/b5d68e.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureDimensions/b5d68e.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureDimensions/bc96f6.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureDimensions/bc96f6.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureDimensions/bc96f6.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureDimensions/bc96f6.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureDimensions/c27466.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureDimensions/c27466.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureDimensions/c27466.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureDimensions/c27466.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureDimensions/c6b985.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureDimensions/c6b985.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureDimensions/c6b985.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureDimensions/c6b985.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureDimensions/c7ea63.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureDimensions/c7ea63.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureDimensions/c7ea63.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureDimensions/c7ea63.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureDimensions/c82420.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureDimensions/c82420.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureDimensions/c82420.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureDimensions/c82420.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureDimensions/ca10cc.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureDimensions/ca10cc.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureDimensions/ca10cc.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureDimensions/ca10cc.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureDimensions/deb3c0.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureDimensions/deb3c0.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureDimensions/deb3c0.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureDimensions/deb3c0.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureDimensions/e4f021.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureDimensions/e4f021.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureDimensions/e4f021.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureDimensions/e4f021.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureDimensions/e50eb8.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureDimensions/e50eb8.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureDimensions/e50eb8.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureDimensions/e50eb8.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureDimensions/e824b6.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureDimensions/e824b6.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureDimensions/e824b6.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureDimensions/e824b6.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureDimensions/eb10d6.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureDimensions/eb10d6.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureDimensions/eb10d6.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureDimensions/eb10d6.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureDimensions/eb1249.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureDimensions/eb1249.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureDimensions/eb1249.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureDimensions/eb1249.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureDimensions/eb9f4d.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureDimensions/eb9f4d.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureDimensions/eb9f4d.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureDimensions/eb9f4d.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureDimensions/f406ff.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureDimensions/f406ff.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureDimensions/f406ff.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureDimensions/f406ff.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureDimensions/f55a94.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureDimensions/f55a94.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureDimensions/f55a94.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureDimensions/f55a94.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureDimensions/f93ece.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureDimensions/f93ece.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureDimensions/f93ece.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureDimensions/f93ece.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureDimensions/f94e55.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureDimensions/f94e55.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureDimensions/f94e55.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureDimensions/f94e55.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureLoad/012e11.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureLoad/012e11.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureLoad/012e11.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/012e11.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureLoad/02c48d.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureLoad/02c48d.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureLoad/02c48d.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/02c48d.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureLoad/03e03e.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureLoad/03e03e.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureLoad/03e03e.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/03e03e.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureLoad/054350.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureLoad/054350.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureLoad/054350.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/054350.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureLoad/0b515a.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureLoad/0b515a.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureLoad/0b515a.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/0b515a.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureLoad/126466.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureLoad/126466.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureLoad/126466.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/126466.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureLoad/14cc4c.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureLoad/14cc4c.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureLoad/14cc4c.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/14cc4c.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureLoad/170593.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureLoad/170593.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureLoad/170593.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/170593.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureLoad/17095b.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureLoad/17095b.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureLoad/17095b.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/17095b.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureLoad/1bc5ab.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureLoad/1bc5ab.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureLoad/1bc5ab.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/1bc5ab.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureLoad/1d43ae.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureLoad/1d43ae.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureLoad/1d43ae.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/1d43ae.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureLoad/1e6baa.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureLoad/1e6baa.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureLoad/1e6baa.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/1e6baa.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureLoad/1fde63.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureLoad/1fde63.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureLoad/1fde63.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/1fde63.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureLoad/25b67f.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureLoad/25b67f.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureLoad/25b67f.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/25b67f.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureLoad/26b8f6.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureLoad/26b8f6.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureLoad/26b8f6.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/26b8f6.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureLoad/2cee30.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureLoad/2cee30.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureLoad/2cee30.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/2cee30.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureLoad/2dbfc2.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureLoad/2dbfc2.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureLoad/2dbfc2.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/2dbfc2.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureLoad/2eaf31.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureLoad/2eaf31.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureLoad/2eaf31.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/2eaf31.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureLoad/32a7b8.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureLoad/32a7b8.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureLoad/32a7b8.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/32a7b8.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureLoad/34d97c.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureLoad/34d97c.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureLoad/34d97c.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/34d97c.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureLoad/35a5e2.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureLoad/35a5e2.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureLoad/35a5e2.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/35a5e2.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureLoad/39016c.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureLoad/39016c.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureLoad/39016c.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/39016c.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureLoad/395447.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureLoad/395447.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureLoad/395447.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/395447.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureLoad/3a2350.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureLoad/3a2350.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureLoad/3a2350.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/3a2350.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureLoad/3cfb9c.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureLoad/3cfb9c.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureLoad/3cfb9c.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/3cfb9c.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureLoad/3e16a8.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureLoad/3e16a8.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureLoad/3e16a8.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/3e16a8.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureLoad/40ee8b.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureLoad/40ee8b.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureLoad/40ee8b.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/40ee8b.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureLoad/4212a1.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureLoad/4212a1.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureLoad/4212a1.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/4212a1.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureLoad/424afd.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureLoad/424afd.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureLoad/424afd.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/424afd.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureLoad/42a631.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureLoad/42a631.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureLoad/42a631.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/42a631.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureLoad/43cd86.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureLoad/43cd86.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureLoad/43cd86.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/43cd86.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureLoad/4542ae.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureLoad/4542ae.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureLoad/4542ae.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/4542ae.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureLoad/469912.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureLoad/469912.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureLoad/469912.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/469912.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureLoad/473d3e.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureLoad/473d3e.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureLoad/473d3e.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/473d3e.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureLoad/482627.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureLoad/482627.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureLoad/482627.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/482627.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureLoad/4a5c55.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureLoad/4a5c55.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureLoad/4a5c55.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/4a5c55.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureLoad/4c15b2.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureLoad/4c15b2.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureLoad/4c15b2.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/4c15b2.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureLoad/4c1a1e.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureLoad/4c1a1e.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureLoad/4c1a1e.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/4c1a1e.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureLoad/4ccf9a.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureLoad/4ccf9a.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureLoad/4ccf9a.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/4ccf9a.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureLoad/4e2c5c.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureLoad/4e2c5c.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureLoad/4e2c5c.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/4e2c5c.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureLoad/4f90bb.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureLoad/4f90bb.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureLoad/4f90bb.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/4f90bb.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureLoad/5154e1.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureLoad/5154e1.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureLoad/5154e1.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/5154e1.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureLoad/53941c.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureLoad/53941c.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureLoad/53941c.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/53941c.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureLoad/54fb38.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureLoad/54fb38.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureLoad/54fb38.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/54fb38.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureLoad/56a000.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureLoad/56a000.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureLoad/56a000.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/56a000.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureLoad/5b0f5b.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureLoad/5b0f5b.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureLoad/5b0f5b.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/5b0f5b.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureLoad/5b4947.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureLoad/5b4947.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureLoad/5b4947.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/5b4947.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureLoad/5c69f8.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureLoad/5c69f8.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureLoad/5c69f8.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/5c69f8.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureLoad/5e17a7.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureLoad/5e17a7.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureLoad/5e17a7.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/5e17a7.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureLoad/5e1843.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureLoad/5e1843.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureLoad/5e1843.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/5e1843.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureLoad/61e2e8.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureLoad/61e2e8.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureLoad/61e2e8.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/61e2e8.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureLoad/622278.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureLoad/622278.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureLoad/622278.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/622278.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureLoad/64c372.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureLoad/64c372.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureLoad/64c372.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/64c372.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureLoad/666010.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureLoad/666010.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureLoad/666010.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/666010.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureLoad/68d273.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureLoad/68d273.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureLoad/68d273.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/68d273.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureLoad/6a6871.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureLoad/6a6871.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureLoad/6a6871.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/6a6871.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureLoad/6b8ba6.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureLoad/6b8ba6.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureLoad/6b8ba6.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/6b8ba6.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureLoad/6ba9ab.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureLoad/6ba9ab.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureLoad/6ba9ab.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/6ba9ab.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureLoad/6bf3e2.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureLoad/6bf3e2.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureLoad/6bf3e2.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/6bf3e2.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureLoad/6d7bb5.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureLoad/6d7bb5.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureLoad/6d7bb5.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/6d7bb5.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureLoad/6e903f.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureLoad/6e903f.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureLoad/6e903f.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/6e903f.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureLoad/6f0ea8.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureLoad/6f0ea8.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureLoad/6f0ea8.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/6f0ea8.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureLoad/6f8927.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureLoad/6f8927.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureLoad/6f8927.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/6f8927.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureLoad/72c9c3.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureLoad/72c9c3.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureLoad/72c9c3.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/72c9c3.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureLoad/742f1b.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureLoad/742f1b.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureLoad/742f1b.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/742f1b.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureLoad/74a387.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureLoad/74a387.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureLoad/74a387.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/74a387.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureLoad/7dd3d5.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureLoad/7dd3d5.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureLoad/7dd3d5.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/7dd3d5.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureLoad/7e5cbc.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureLoad/7e5cbc.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureLoad/7e5cbc.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/7e5cbc.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureLoad/80dae1.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureLoad/80dae1.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureLoad/80dae1.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/80dae1.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureLoad/848d85.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureLoad/848d85.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureLoad/848d85.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/848d85.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureLoad/84a438.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureLoad/84a438.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureLoad/84a438.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/84a438.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureLoad/878e24.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureLoad/878e24.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureLoad/878e24.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/878e24.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureLoad/87f0a6.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureLoad/87f0a6.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureLoad/87f0a6.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/87f0a6.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureLoad/881349.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureLoad/881349.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureLoad/881349.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/881349.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureLoad/8b62fb.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureLoad/8b62fb.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureLoad/8b62fb.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/8b62fb.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureLoad/8c6176.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureLoad/8c6176.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureLoad/8c6176.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/8c6176.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureLoad/8d64c3.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureLoad/8d64c3.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureLoad/8d64c3.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/8d64c3.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureLoad/8e68c9.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureLoad/8e68c9.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureLoad/8e68c9.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/8e68c9.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureLoad/8fc29b.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureLoad/8fc29b.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureLoad/8fc29b.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/8fc29b.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureLoad/91ede5.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureLoad/91ede5.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureLoad/91ede5.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/91ede5.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureLoad/9242e7.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureLoad/9242e7.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureLoad/9242e7.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/9242e7.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureLoad/92dd61.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureLoad/92dd61.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureLoad/92dd61.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/92dd61.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureLoad/99d8fa.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureLoad/99d8fa.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureLoad/99d8fa.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/99d8fa.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureLoad/9fa9fd.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureLoad/9fa9fd.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureLoad/9fa9fd.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/9fa9fd.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureLoad/9fd7be.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureLoad/9fd7be.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureLoad/9fd7be.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/9fd7be.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureLoad/a2b3f4.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureLoad/a2b3f4.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureLoad/a2b3f4.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/a2b3f4.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureLoad/a3733f.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureLoad/a3733f.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureLoad/a3733f.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/a3733f.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureLoad/a3f122.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureLoad/a3f122.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureLoad/a3f122.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/a3f122.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureLoad/a548a8.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureLoad/a548a8.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureLoad/a548a8.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/a548a8.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureLoad/a54e11.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureLoad/a54e11.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureLoad/a54e11.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/a54e11.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureLoad/a5c4e2.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureLoad/a5c4e2.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureLoad/a5c4e2.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/a5c4e2.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureLoad/a64b1d.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureLoad/a64b1d.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureLoad/a64b1d.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/a64b1d.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureLoad/a7bcb4.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureLoad/a7bcb4.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureLoad/a7bcb4.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/a7bcb4.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureLoad/a7c171.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureLoad/a7c171.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureLoad/a7c171.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/a7c171.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureLoad/a92b18.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureLoad/a92b18.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureLoad/a92b18.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/a92b18.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureLoad/aa2579.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureLoad/aa2579.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureLoad/aa2579.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/aa2579.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureLoad/aa6130.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureLoad/aa6130.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureLoad/aa6130.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/aa6130.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureLoad/aae9c3.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureLoad/aae9c3.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureLoad/aae9c3.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/aae9c3.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureLoad/acf22f.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureLoad/acf22f.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureLoad/acf22f.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/acf22f.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureLoad/af0507.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureLoad/af0507.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureLoad/af0507.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/af0507.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureLoad/b1ca35.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureLoad/b1ca35.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureLoad/b1ca35.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/b1ca35.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureLoad/b4d6c4.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureLoad/b4d6c4.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureLoad/b4d6c4.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/b4d6c4.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureLoad/b60a86.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureLoad/b60a86.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureLoad/b60a86.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/b60a86.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureLoad/b60db7.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureLoad/b60db7.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureLoad/b60db7.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/b60db7.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureLoad/ba74b2.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureLoad/ba74b2.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureLoad/ba74b2.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/ba74b2.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureLoad/babdf3.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureLoad/babdf3.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureLoad/babdf3.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/babdf3.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureLoad/bba04a.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureLoad/bba04a.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureLoad/bba04a.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/bba04a.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureLoad/bbb762.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureLoad/bbb762.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureLoad/bbb762.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/bbb762.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureLoad/bc882d.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureLoad/bc882d.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureLoad/bc882d.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/bc882d.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureLoad/bd990a.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureLoad/bd990a.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureLoad/bd990a.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/bd990a.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureLoad/bdc67a.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureLoad/bdc67a.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureLoad/bdc67a.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/bdc67a.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureLoad/c5c86d.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureLoad/c5c86d.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureLoad/c5c86d.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/c5c86d.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureLoad/c7e313.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureLoad/c7e313.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureLoad/c7e313.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/c7e313.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureLoad/c98bf4.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureLoad/c98bf4.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureLoad/c98bf4.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/c98bf4.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureLoad/c9b083.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureLoad/c9b083.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureLoad/c9b083.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/c9b083.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureLoad/cac876.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureLoad/cac876.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureLoad/cac876.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/cac876.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureLoad/cdbcf6.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureLoad/cdbcf6.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureLoad/cdbcf6.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/cdbcf6.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureLoad/cdccd2.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureLoad/cdccd2.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureLoad/cdccd2.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/cdccd2.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureLoad/cddf6b.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureLoad/cddf6b.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureLoad/cddf6b.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/cddf6b.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureLoad/d0e351.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureLoad/d0e351.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureLoad/d0e351.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/d0e351.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureLoad/d37a08.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureLoad/d37a08.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureLoad/d37a08.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/d37a08.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureLoad/d3d8fc.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureLoad/d3d8fc.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureLoad/d3d8fc.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/d3d8fc.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureLoad/d41c72.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureLoad/d41c72.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureLoad/d41c72.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/d41c72.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureLoad/d72de9.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureLoad/d72de9.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureLoad/d72de9.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/d72de9.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureLoad/d7996a.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureLoad/d7996a.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureLoad/d7996a.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/d7996a.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureLoad/d79c5c.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureLoad/d79c5c.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureLoad/d79c5c.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/d79c5c.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureLoad/d80ff3.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureLoad/d80ff3.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureLoad/d80ff3.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/d80ff3.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureLoad/d8be5a.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureLoad/d8be5a.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureLoad/d8be5a.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/d8be5a.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureLoad/d91f37.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureLoad/d91f37.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureLoad/d91f37.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/d91f37.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureLoad/dab04f.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureLoad/dab04f.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureLoad/dab04f.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/dab04f.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureLoad/dd5859.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureLoad/dd5859.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureLoad/dd5859.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/dd5859.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureLoad/de5a0e.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureLoad/de5a0e.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureLoad/de5a0e.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/de5a0e.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureLoad/defd9a.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureLoad/defd9a.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureLoad/defd9a.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/defd9a.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureLoad/e1c3cf.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureLoad/e1c3cf.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureLoad/e1c3cf.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/e1c3cf.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureLoad/e2b3a1.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureLoad/e2b3a1.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureLoad/e2b3a1.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/e2b3a1.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureLoad/e2d7da.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureLoad/e2d7da.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureLoad/e2d7da.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/e2d7da.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureLoad/e33285.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureLoad/e33285.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureLoad/e33285.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/e33285.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureLoad/e4051a.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureLoad/e4051a.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureLoad/e4051a.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/e4051a.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureLoad/e9eb65.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureLoad/e9eb65.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureLoad/e9eb65.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/e9eb65.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureLoad/ed55a8.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureLoad/ed55a8.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureLoad/ed55a8.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/ed55a8.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureLoad/ef2ec3.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureLoad/ef2ec3.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureLoad/ef2ec3.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/ef2ec3.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureLoad/f0514a.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureLoad/f0514a.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureLoad/f0514a.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/f0514a.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureLoad/f2bdd4.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureLoad/f2bdd4.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureLoad/f2bdd4.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/f2bdd4.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureLoad/f2c311.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureLoad/f2c311.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureLoad/f2c311.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/f2c311.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureLoad/f5fbc6.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureLoad/f5fbc6.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureLoad/f5fbc6.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/f5fbc6.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureLoad/f7f3bc.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureLoad/f7f3bc.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureLoad/f7f3bc.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/f7f3bc.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureLoad/f82eb2.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureLoad/f82eb2.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureLoad/f82eb2.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/f82eb2.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureLoad/fc47ff.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureLoad/fc47ff.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureLoad/fc47ff.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/fc47ff.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureLoad/fd9606.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureLoad/fd9606.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureLoad/fd9606.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/fd9606.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureLoad/fe2c1b.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureLoad/fe2c1b.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureLoad/fe2c1b.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/fe2c1b.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureNumLayers/0856ae.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureNumLayers/0856ae.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureNumLayers/0856ae.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureNumLayers/0856ae.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureNumLayers/17ccad.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureNumLayers/17ccad.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureNumLayers/17ccad.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureNumLayers/17ccad.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureNumLayers/24d572.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureNumLayers/24d572.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureNumLayers/24d572.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureNumLayers/24d572.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureNumLayers/2a48dc.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureNumLayers/2a48dc.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureNumLayers/2a48dc.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureNumLayers/2a48dc.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureNumLayers/327d70.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureNumLayers/327d70.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureNumLayers/327d70.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureNumLayers/327d70.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureNumLayers/32ca10.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureNumLayers/32ca10.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureNumLayers/32ca10.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureNumLayers/32ca10.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureNumLayers/380a60.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureNumLayers/380a60.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureNumLayers/380a60.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureNumLayers/380a60.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureNumLayers/54a654.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureNumLayers/54a654.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureNumLayers/54a654.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureNumLayers/54a654.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureNumLayers/5ee8f2.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureNumLayers/5ee8f2.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureNumLayers/5ee8f2.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureNumLayers/5ee8f2.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureNumLayers/622aa2.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureNumLayers/622aa2.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureNumLayers/622aa2.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureNumLayers/622aa2.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureNumLayers/6da0eb.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureNumLayers/6da0eb.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureNumLayers/6da0eb.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureNumLayers/6da0eb.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureNumLayers/a54655.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureNumLayers/a54655.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureNumLayers/a54655.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureNumLayers/a54655.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureNumLayers/aac630.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureNumLayers/aac630.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureNumLayers/aac630.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureNumLayers/aac630.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureNumLayers/d3f655.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureNumLayers/d3f655.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureNumLayers/d3f655.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureNumLayers/d3f655.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureNumLayers/e47aac.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureNumLayers/e47aac.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureNumLayers/e47aac.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureNumLayers/e47aac.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureStore/036d0e.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureStore/036d0e.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureStore/036d0e.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureStore/036d0e.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureStore/03e7a0.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureStore/03e7a0.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureStore/03e7a0.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureStore/03e7a0.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureStore/042b06.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureStore/042b06.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureStore/042b06.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureStore/042b06.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureStore/052a4e.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureStore/052a4e.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureStore/052a4e.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureStore/052a4e.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureStore/053664.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureStore/053664.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureStore/053664.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureStore/053664.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureStore/09e4d5.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureStore/09e4d5.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureStore/09e4d5.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureStore/09e4d5.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureStore/0ad124.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureStore/0ad124.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureStore/0ad124.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureStore/0ad124.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureStore/0ade9a.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureStore/0ade9a.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureStore/0ade9a.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureStore/0ade9a.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureStore/101325.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureStore/101325.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureStore/101325.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureStore/101325.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureStore/145061.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureStore/145061.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureStore/145061.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureStore/145061.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureStore/178e69.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureStore/178e69.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureStore/178e69.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureStore/178e69.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureStore/195d1b.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureStore/195d1b.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureStore/195d1b.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureStore/195d1b.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureStore/197637.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureStore/197637.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureStore/197637.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureStore/197637.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureStore/1a6c0b.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureStore/1a6c0b.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureStore/1a6c0b.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureStore/1a6c0b.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureStore/1af236.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureStore/1af236.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureStore/1af236.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureStore/1af236.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureStore/2046db.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureStore/2046db.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureStore/2046db.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureStore/2046db.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureStore/2173fd.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureStore/2173fd.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureStore/2173fd.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureStore/2173fd.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureStore/26a26d.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureStore/26a26d.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureStore/26a26d.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureStore/26a26d.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureStore/272f5a.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureStore/272f5a.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureStore/272f5a.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureStore/272f5a.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureStore/28e109.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureStore/28e109.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureStore/28e109.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureStore/28e109.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureStore/2a60c9.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureStore/2a60c9.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureStore/2a60c9.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureStore/2a60c9.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureStore/2addd6.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureStore/2addd6.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureStore/2addd6.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureStore/2addd6.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureStore/2c76db.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureStore/2c76db.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureStore/2c76db.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureStore/2c76db.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureStore/2e512f.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureStore/2e512f.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureStore/2e512f.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureStore/2e512f.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureStore/2f29ea.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureStore/2f29ea.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureStore/2f29ea.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureStore/2f29ea.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureStore/3310d3.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureStore/3310d3.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureStore/3310d3.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureStore/3310d3.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureStore/345332.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureStore/345332.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureStore/345332.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureStore/345332.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureStore/3d96a4.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureStore/3d96a4.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureStore/3d96a4.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureStore/3d96a4.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureStore/3e0dc4.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureStore/3e0dc4.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureStore/3e0dc4.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureStore/3e0dc4.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureStore/3f61ca.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureStore/3f61ca.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureStore/3f61ca.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureStore/3f61ca.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureStore/43d1df.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureStore/43d1df.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureStore/43d1df.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureStore/43d1df.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureStore/441222.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureStore/441222.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureStore/441222.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureStore/441222.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureStore/4483e7.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureStore/4483e7.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureStore/4483e7.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureStore/4483e7.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureStore/44b372.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureStore/44b372.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureStore/44b372.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureStore/44b372.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureStore/473ead.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureStore/473ead.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureStore/473ead.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureStore/473ead.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureStore/47bd70.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureStore/47bd70.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureStore/47bd70.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureStore/47bd70.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureStore/48cb56.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureStore/48cb56.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureStore/48cb56.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureStore/48cb56.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureStore/4c76b7.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureStore/4c76b7.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureStore/4c76b7.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureStore/4c76b7.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureStore/4cce74.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureStore/4cce74.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureStore/4cce74.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureStore/4cce74.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureStore/4ddf52.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureStore/4ddf52.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureStore/4ddf52.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureStore/4ddf52.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureStore/4e2b3a.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureStore/4e2b3a.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureStore/4e2b3a.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureStore/4e2b3a.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureStore/5030f5.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureStore/5030f5.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureStore/5030f5.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureStore/5030f5.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureStore/51ec82.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureStore/51ec82.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureStore/51ec82.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureStore/51ec82.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureStore/5425ab.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureStore/5425ab.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureStore/5425ab.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureStore/5425ab.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureStore/544f06.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureStore/544f06.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureStore/544f06.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureStore/544f06.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureStore/55f9dc.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureStore/55f9dc.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureStore/55f9dc.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureStore/55f9dc.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureStore/574a31.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureStore/574a31.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureStore/574a31.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureStore/574a31.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureStore/58fc35.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureStore/58fc35.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureStore/58fc35.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureStore/58fc35.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureStore/5a8b41.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureStore/5a8b41.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureStore/5a8b41.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureStore/5a8b41.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureStore/5b17eb.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureStore/5b17eb.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureStore/5b17eb.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureStore/5b17eb.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureStore/5b4522.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureStore/5b4522.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureStore/5b4522.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureStore/5b4522.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureStore/5ee194.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureStore/5ee194.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureStore/5ee194.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureStore/5ee194.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureStore/635584.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureStore/635584.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureStore/635584.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureStore/635584.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureStore/63f34a.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureStore/63f34a.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureStore/63f34a.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureStore/63f34a.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureStore/646dbc.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureStore/646dbc.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureStore/646dbc.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureStore/646dbc.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureStore/65b6aa.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureStore/65b6aa.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureStore/65b6aa.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureStore/65b6aa.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureStore/65ba8b.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureStore/65ba8b.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureStore/65ba8b.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureStore/65ba8b.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureStore/6d1809.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureStore/6d1809.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureStore/6d1809.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureStore/6d1809.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureStore/6d259f.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureStore/6d259f.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureStore/6d259f.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureStore/6d259f.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureStore/6f0c92.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureStore/6f0c92.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureStore/6f0c92.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureStore/6f0c92.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureStore/6f3542.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureStore/6f3542.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureStore/6f3542.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureStore/6f3542.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureStore/6fb99b.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureStore/6fb99b.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureStore/6fb99b.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureStore/6fb99b.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureStore/704e1f.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureStore/704e1f.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureStore/704e1f.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureStore/704e1f.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureStore/706236.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureStore/706236.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureStore/706236.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureStore/706236.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureStore/706560.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureStore/706560.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureStore/706560.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureStore/706560.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureStore/726d6d.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureStore/726d6d.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureStore/726d6d.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureStore/726d6d.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureStore/73a735.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureStore/73a735.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureStore/73a735.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureStore/73a735.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureStore/751256.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureStore/751256.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureStore/751256.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureStore/751256.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureStore/75bbd5.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureStore/75bbd5.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureStore/75bbd5.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureStore/75bbd5.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureStore/7792fa.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureStore/7792fa.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureStore/7792fa.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureStore/7792fa.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureStore/7b8f86.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureStore/7b8f86.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureStore/7b8f86.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureStore/7b8f86.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureStore/7d10e0.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureStore/7d10e0.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureStore/7d10e0.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureStore/7d10e0.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureStore/7dd042.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureStore/7dd042.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureStore/7dd042.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureStore/7dd042.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureStore/7e787a.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureStore/7e787a.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureStore/7e787a.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureStore/7e787a.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureStore/803a10.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureStore/803a10.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureStore/803a10.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureStore/803a10.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureStore/80bf1d.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureStore/80bf1d.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureStore/80bf1d.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureStore/80bf1d.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureStore/818df6.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureStore/818df6.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureStore/818df6.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureStore/818df6.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureStore/820272.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureStore/820272.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureStore/820272.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureStore/820272.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureStore/84d435.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureStore/84d435.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureStore/84d435.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureStore/84d435.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureStore/84f4f4.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureStore/84f4f4.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureStore/84f4f4.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureStore/84f4f4.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureStore/86f713.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureStore/86f713.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureStore/86f713.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureStore/86f713.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureStore/877c92.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureStore/877c92.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureStore/877c92.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureStore/877c92.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureStore/8815b1.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureStore/8815b1.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureStore/8815b1.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureStore/8815b1.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureStore/885921.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureStore/885921.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureStore/885921.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureStore/885921.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureStore/88ce7e.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureStore/88ce7e.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureStore/88ce7e.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureStore/88ce7e.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureStore/8a46ff.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureStore/8a46ff.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureStore/8a46ff.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureStore/8a46ff.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureStore/8a85b9.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureStore/8a85b9.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureStore/8a85b9.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureStore/8a85b9.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureStore/8a8681.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureStore/8a8681.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureStore/8a8681.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureStore/8a8681.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureStore/8ae0bc.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureStore/8ae0bc.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureStore/8ae0bc.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureStore/8ae0bc.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureStore/8ebdc9.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureStore/8ebdc9.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureStore/8ebdc9.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureStore/8ebdc9.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureStore/90960e.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureStore/90960e.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureStore/90960e.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureStore/90960e.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureStore/90a553.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureStore/90a553.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureStore/90a553.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureStore/90a553.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureStore/976636.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureStore/976636.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureStore/976636.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureStore/976636.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureStore/9ba5c1.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureStore/9ba5c1.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureStore/9ba5c1.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureStore/9ba5c1.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureStore/9cea9e.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureStore/9cea9e.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureStore/9cea9e.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureStore/9cea9e.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureStore/9d7c62.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureStore/9d7c62.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureStore/9d7c62.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureStore/9d7c62.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureStore/a14041.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureStore/a14041.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureStore/a14041.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureStore/a14041.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureStore/a19a12.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureStore/a19a12.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureStore/a19a12.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureStore/a19a12.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureStore/a24491.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureStore/a24491.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureStore/a24491.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureStore/a24491.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureStore/a5b88e.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureStore/a5b88e.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureStore/a5b88e.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureStore/a5b88e.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureStore/a5c925.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureStore/a5c925.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureStore/a5c925.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureStore/a5c925.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureStore/a66ca4.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureStore/a66ca4.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureStore/a66ca4.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureStore/a66ca4.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureStore/a702b6.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureStore/a702b6.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureStore/a702b6.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureStore/a702b6.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureStore/a7fc47.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureStore/a7fc47.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureStore/a7fc47.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureStore/a7fc47.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureStore/a9298c.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureStore/a9298c.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureStore/a9298c.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureStore/a9298c.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureStore/ab03b6.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureStore/ab03b6.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureStore/ab03b6.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureStore/ab03b6.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureStore/ab788e.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureStore/ab788e.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureStore/ab788e.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureStore/ab788e.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureStore/ac0a55.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureStore/ac0a55.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureStore/ac0a55.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureStore/ac0a55.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureStore/ae6a2a.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureStore/ae6a2a.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureStore/ae6a2a.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureStore/ae6a2a.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureStore/aedea3.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureStore/aedea3.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureStore/aedea3.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureStore/aedea3.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureStore/b16110.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureStore/b16110.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureStore/b16110.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureStore/b16110.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureStore/b286b4.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureStore/b286b4.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureStore/b286b4.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureStore/b286b4.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureStore/b36bc1.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureStore/b36bc1.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureStore/b36bc1.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureStore/b36bc1.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureStore/b4389e.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureStore/b4389e.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureStore/b4389e.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureStore/b4389e.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureStore/b71c13.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureStore/b71c13.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureStore/b71c13.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureStore/b71c13.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureStore/b89ffb.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureStore/b89ffb.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureStore/b89ffb.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureStore/b89ffb.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureStore/b9c81a.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureStore/b9c81a.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureStore/b9c81a.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureStore/b9c81a.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureStore/b9d863.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureStore/b9d863.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureStore/b9d863.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureStore/b9d863.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureStore/bc1423.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureStore/bc1423.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureStore/bc1423.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureStore/bc1423.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureStore/bd6602.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureStore/bd6602.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureStore/bd6602.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureStore/bd6602.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureStore/c06463.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureStore/c06463.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureStore/c06463.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureStore/c06463.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureStore/c1c664.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureStore/c1c664.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureStore/c1c664.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureStore/c1c664.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureStore/c1f760.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureStore/c1f760.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureStore/c1f760.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureStore/c1f760.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureStore/c33478.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureStore/c33478.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureStore/c33478.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureStore/c33478.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureStore/c63f05.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureStore/c63f05.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureStore/c63f05.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureStore/c63f05.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureStore/c79451.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureStore/c79451.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureStore/c79451.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureStore/c79451.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureStore/ccac20.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureStore/ccac20.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureStore/ccac20.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureStore/ccac20.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureStore/d0d62c.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureStore/d0d62c.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureStore/d0d62c.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureStore/d0d62c.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureStore/d0fadc.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureStore/d0fadc.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureStore/d0fadc.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureStore/d0fadc.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureStore/d19db4.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureStore/d19db4.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureStore/d19db4.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureStore/d19db4.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureStore/d1ab82.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureStore/d1ab82.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureStore/d1ab82.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureStore/d1ab82.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureStore/d3a22b.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureStore/d3a22b.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureStore/d3a22b.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureStore/d3a22b.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureStore/d86d33.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureStore/d86d33.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureStore/d86d33.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureStore/d86d33.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureStore/da530c.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureStore/da530c.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureStore/da530c.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureStore/da530c.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureStore/db5128.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureStore/db5128.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureStore/db5128.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureStore/db5128.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureStore/dd8b29.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureStore/dd8b29.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureStore/dd8b29.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureStore/dd8b29.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureStore/de38e5.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureStore/de38e5.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureStore/de38e5.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureStore/de38e5.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureStore/e077e7.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureStore/e077e7.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureStore/e077e7.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureStore/e077e7.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureStore/e1784d.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureStore/e1784d.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureStore/e1784d.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureStore/e1784d.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureStore/e46fd8.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureStore/e46fd8.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureStore/e46fd8.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureStore/e46fd8.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureStore/e72bdc.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureStore/e72bdc.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureStore/e72bdc.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureStore/e72bdc.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureStore/e87f6e.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureStore/e87f6e.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureStore/e87f6e.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureStore/e87f6e.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureStore/ea30d2.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureStore/ea30d2.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureStore/ea30d2.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureStore/ea30d2.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureStore/ed6198.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureStore/ed6198.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureStore/ed6198.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureStore/ed6198.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureStore/f05928.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureStore/f05928.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureStore/f05928.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureStore/f05928.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureStore/f6f392.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureStore/f6f392.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureStore/f6f392.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureStore/f6f392.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureStore/f8aaf9.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureStore/f8aaf9.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureStore/f8aaf9.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureStore/f8aaf9.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureStore/f975a0.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureStore/f975a0.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureStore/f975a0.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureStore/f975a0.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureStore/fc916e.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureStore/fc916e.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureStore/fc916e.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureStore/fc916e.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap
diff --git a/test/tint/builtins/gen/var/textureStore/ff23b3.wgsl.expected.ir.glsl b/test/tint/builtins/gen/var/textureStore/ff23b3.wgsl.expected.ir.glsl
index 8dee2cd..d16ee16 100644
--- a/test/tint/builtins/gen/var/textureStore/ff23b3.wgsl.expected.ir.glsl
+++ b/test/tint/builtins/gen/var/textureStore/ff23b3.wgsl.expected.ir.glsl
@@ -1,6 +1,6 @@
-SKIP: FAILED
+SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:350 internal compiler error: Switch() matched no cases. Type: tint::core::type::StorageTexture
+<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:466 internal compiler error: TINT_UNREACHABLE
********************************************************************
* The tint shader compiler has encountered an unexpected error. *
* *
@@ -8,4 +8,4 @@
* crbug.com/tint with the source program that triggered the bug. *
********************************************************************
-tint executable returned error: signal: illegal instruction
+tint executable returned error: signal: trace/BPT trap