Skip to content

Commit abc1166

Browse files
committed
[OPT] Add extension to allow list
The SPV_GOOGLE_user_type extension was not added to one of the allow list. Adding it now. Part of microsoft/DirectXShaderCompiler#7181.
1 parent 2e83ad7 commit abc1166

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

source/opt/local_single_store_elim_pass.cpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,8 @@ void LocalSingleStoreElimPass::InitExtensionAllowList() {
150150
"SPV_AMDX_shader_enqueue",
151151
"SPV_KHR_fragment_shading_rate",
152152
"SPV_KHR_ray_tracing",
153-
"SPV_KHR_quad_control"});
153+
"SPV_KHR_quad_control",
154+
"SPV_GOOGLE_user_type" });
154155
}
155156
bool LocalSingleStoreElimPass::ProcessVariable(Instruction* var_inst) {
156157
std::vector<Instruction*> users;

0 commit comments

Comments
 (0)