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
path: root/tools
diff options
context:
space:
mode:
authorAlastair Donaldson <afdx@google.com>2020-08-26 09:49:42 +0300
committerGitHub <noreply@github.com>2020-08-26 09:49:42 +0300
commit9e26ae04552617102ae22f04946e3b69552f7560 (patch)
treeda0626514cea2a04dccfbbb131ec84a84ad75a03 /tools
parent2205254cfb50c1ced0e2b841a08c1206bd61a686 (diff)
spirv-fuzz: Overflow ids (#3734)
This change adds the notion of "overflow ids", which can be used during shrinking to facilitate applying transformations that would otherwise have become inapplicable due to earlier transformations being removed.
Diffstat (limited to 'tools')
-rw-r--r--tools/fuzz/fuzz.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/fuzz/fuzz.cpp b/tools/fuzz/fuzz.cpp
index 61064d1e3..551f3f439 100644
--- a/tools/fuzz/fuzz.cpp
+++ b/tools/fuzz/fuzz.cpp
@@ -428,7 +428,7 @@ bool Replay(const spv_target_env& target_env,
auto replay_result_status = replayer.Run(
binary_in, initial_facts, transformation_sequence,
- num_transformations_to_apply, binary_out, transformations_applied);
+ num_transformations_to_apply, 0, binary_out, transformations_applied);
return !(replay_result_status !=
spvtools::fuzz::Replayer::ReplayerResultStatus::kComplete);
}