Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/KhronosGroup/SPIRV-Tools.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJiaoluAMD <lu.jiao@amd.com>2022-05-06 17:39:26 +0300
committerGitHub <noreply@github.com>2022-05-06 17:39:26 +0300
commitc11ea09652d3367631496a8cd4cb0f72a32ad6b8 (patch)
tree65a6af904765bf95834dc1154817e97d3d47d51d /BUILD.gn
parent9e377b0f974bd1f048e20dda1d52da900b3246cb (diff)
spirv-opt : Add FixFuncCallArgumentsPass (#4775)
spirv validation require OpFunctionCall with memory object, usually this is non issue as all the functions are inlined. This pass deal with some case for DontInline function. accesschain input operand would be replaced new created variable
Diffstat (limited to 'BUILD.gn')
-rw-r--r--BUILD.gn2
1 files changed, 2 insertions, 0 deletions
diff --git a/BUILD.gn b/BUILD.gn
index ba054978f..5428d8871 100644
--- a/BUILD.gn
+++ b/BUILD.gn
@@ -629,6 +629,8 @@ static_library("spvtools_opt") {
"source/opt/empty_pass.h",
"source/opt/feature_manager.cpp",
"source/opt/feature_manager.h",
+ "source/opt/fix_func_call_arguments.cpp",
+ "source/opt/fix_func_call_arguments.h",
"source/opt/fix_storage_class.cpp",
"source/opt/fix_storage_class.h",
"source/opt/flatten_decoration_pass.cpp",