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_akaros.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_akaros.h')
| -rw-r--r-- | executor/syscalls_akaros.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/executor/syscalls_akaros.h b/executor/syscalls_akaros.h index 90c1f09b9..4df643221 100644 --- a/executor/syscalls_akaros.h +++ b/executor/syscalls_akaros.h @@ -2,7 +2,7 @@ #if defined(__x86_64__) || 0 #define GOARCH "amd64" -#define SYZ_REVISION "43f665d2468516ae8ffc137aec39649a4a1dc7ce" +#define SYZ_REVISION "830b4d26672d98c7e59a44635a52c120cbb66866" #define SYZ_PAGE_SIZE 4096 #define SYZ_NUM_PAGES 4096 #define SYZ_DATA_OFFSET 536870912 |
