aboutsummaryrefslogtreecommitdiff
path: root/sys/tools
diff options
context:
space:
mode:
authorBrooks Davis <brooks@FreeBSD.org>2021-11-22 22:36:56 +0000
committerBrooks Davis <brooks@FreeBSD.org>2021-11-22 22:36:56 +0000
commit5203efead7092974bbeac20661143702be3921bd (patch)
treee8316000095028b66c33e0c99e5b916828064371 /sys/tools
parent97fdcfcaf7990edbfb7f8048403005189d4a7cb5 (diff)
downloadsrc-5203efead7092974bbeac20661143702be3921bd.tar.gz
src-5203efead7092974bbeac20661143702be3921bd.zip
makesyscalls: Remove _native suffix handling
This supported a hack we used in CheriBSD which has been removed. Reviewed by: kevans
Diffstat (limited to 'sys/tools')
-rw-r--r--sys/tools/makesyscalls.lua1
1 files changed, 0 insertions, 1 deletions
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" ..