From 11c256cdcd601b67fcf5611fe8aed55b9ff00143 Mon Sep 17 00:00:00 2001 From: Dokyung Song Date: Thu, 6 Sep 2018 15:49:23 -0700 Subject: sys/fuchsia: prune unused structs in syscall description generated by fidlgen After generating syscall description for fidl files using fidlgen, prune all unused structs using the exact same mechanism used by the compiler's check for unused structs. This allows the FIDL compiler to support modular compilation; it does not need to have global knowledge of whether each struct is used or not. --- executor/defs.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'executor/defs.h') diff --git a/executor/defs.h b/executor/defs.h index f5322ae6b..23389279c 100644 --- a/executor/defs.h +++ b/executor/defs.h @@ -35,7 +35,7 @@ #if GOARCH_amd64 #define GOARCH "amd64" -#define SYZ_REVISION "ee62749ce0e69fd29de1864a220e909a18613438" +#define SYZ_REVISION "6cdbdf7c4071faca2094bf2150ea2a90384bb008" #define SYZ_EXECUTOR_USES_FORK_SERVER 0 #define SYZ_EXECUTOR_USES_SHMEM 0 #define SYZ_PAGE_SIZE 4096 @@ -45,7 +45,7 @@ #if GOARCH_arm64 #define GOARCH "arm64" -#define SYZ_REVISION "80d5b2ce01d8c9deca31efaa1a61da313eaa44e6" +#define SYZ_REVISION "59de262e4cd9e36f40a7767839877a47372efa54" #define SYZ_EXECUTOR_USES_FORK_SERVER 0 #define SYZ_EXECUTOR_USES_SHMEM 0 #define SYZ_PAGE_SIZE 4096 -- cgit mrf-deployment