aboutsummaryrefslogtreecommitdiffstats
path: root/pkg
diff options
context:
space:
mode:
authorDmitry Vyukov <dvyukov@google.com>2024-12-13 15:17:06 +0100
committerDmitry Vyukov <dvyukov@google.com>2024-12-13 15:16:31 +0000
commit07522f013fe6e6aaad28c40247f11e6409477f64 (patch)
tree2300b7c7fd8518da9d1e69119adced443bbaf947 /pkg
parentce78f675cfb8aad794f186afa0f702c5ca4928c0 (diff)
pkg/declextract: change auto_todo type to int8
We use auto_todo type as an element of array for void*. array[int8] is lowered to the buffer type, which is much better handled by the fuzzer engine + closer resembles real blobs.
Diffstat (limited to 'pkg')
-rw-r--r--pkg/declextract/serialization.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/declextract/serialization.go b/pkg/declextract/serialization.go
index 2906ce6c2..6d27d2a13 100644
--- a/pkg/declextract/serialization.go
+++ b/pkg/declextract/serialization.go
@@ -25,7 +25,7 @@ const header = `# Code generated by syz-declextract. DO NOT EDIT.
meta automatic
-type auto_todo intptr
+type auto_todo int8
`