From 1f4ae3f41357cf0a8cf8c698cbcd1000b8b44bf4 Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Sun, 25 Feb 2018 14:31:40 +0100 Subject: 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. --- executor/syscalls_netbsd.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'executor/syscalls_netbsd.h') 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 -- cgit mrf-deployment