diff options
| author | Dmitry Vyukov <dvyukov@google.com> | 2018-02-25 14:31:40 +0100 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2018-02-25 14:31:40 +0100 |
| commit | 1f4ae3f41357cf0a8cf8c698cbcd1000b8b44bf4 (patch) | |
| tree | b0ff449b2265098397320e1501f3d10b4377a6ea /executor/syscalls_netbsd.h | |
| parent | 44f66b4026e94ffbb63e7ba1a53f0c5f78a03fea (diff) | |
pkg/compiler: don't assign call IDs statically
IDs change whenever a call is added or removed,
this leads to large diffs unnecessarly.
Assign IDs dynamically.
Diffstat (limited to 'executor/syscalls_netbsd.h')
| -rw-r--r-- | executor/syscalls_netbsd.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/executor/syscalls_netbsd.h b/executor/syscalls_netbsd.h index aa7ae3bca..9b5c25f52 100644 --- a/executor/syscalls_netbsd.h +++ b/executor/syscalls_netbsd.h @@ -2,7 +2,7 @@ #if defined(__x86_64__) || 0 #define GOARCH "amd64" -#define SYZ_REVISION "2439df11c096f3078f912ba500b1452d2fd517df" +#define SYZ_REVISION "775fd68455ffc4d5b9a5fafb68cad768d55bb0be" #define SYZ_PAGE_SIZE 4096 #define SYZ_NUM_PAGES 4096 #define SYZ_DATA_OFFSET 536870912 |
