aboutsummaryrefslogtreecommitdiff
path: root/stdlib/functiontype.c
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2024-10-29 23:14:31 -0400
committerBruce Hill <bruce@bruce-hill.com>2024-10-29 23:14:31 -0400
commit9ebb039a81f5ea06e97d84ef7ee447da9dfca204 (patch)
treedc229247feb19ddec117e3c680dd1c13a40dbdd1 /stdlib/functiontype.c
parent3e019df9f429caef4b05947cc70652634ebb2467 (diff)
Fix up some GCC compiler flag options for LTO and inlining
Diffstat (limited to 'stdlib/functiontype.c')
-rw-r--r--stdlib/functiontype.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/stdlib/functiontype.c b/stdlib/functiontype.c
index 49863d86..ce07c063 100644
--- a/stdlib/functiontype.c
+++ b/stdlib/functiontype.c
@@ -13,7 +13,7 @@ public void register_function(void *fn, Text_t name)
Table$set(&function_names, &fn, &name, Table$info(Function$info("???"), &Text$info));
}
-public Text_t *get_function_name(void *fn)
+PUREFUNC public Text_t *get_function_name(void *fn)
{
return Table$get(function_names, &fn, Table$info(Function$info("???"), &Text$info));
}