From 5203efead7092974bbeac20661143702be3921bd Mon Sep 17 00:00:00 2001 From: Brooks Davis Date: Mon, 22 Nov 2021 22:36:56 +0000 Subject: [PATCH] makesyscalls: Remove _native suffix handling This supported a hack we used in CheriBSD which has been removed. Reviewed by: kevans --- sys/tools/makesyscalls.lua | 1 - 1 file changed, 1 deletion(-) diff --git a/sys/tools/makesyscalls.lua b/sys/tools/makesyscalls.lua index a390be8b6154..f34d34b89d94 100644 --- a/sys/tools/makesyscalls.lua +++ b/sys/tools/makesyscalls.lua @@ -581,7 +581,6 @@ local function process_args(args) -- XX TODO: Forward declarations? See: sysstubfwd in CheriBSD if abi_change then local abi_type_suffix = config["abi_type_suffix"] - argtype = argtype:gsub("_native ", "") argtype = argtype:gsub("(struct [^ ]*)", "%1" .. abi_type_suffix) argtype = argtype:gsub("(union [^ ]*)", "%1" ..