[libc-commits] [libc] [libc] implement quick exit function (PR #93621)
Michael Jones via libc-commits
libc-commits at lists.llvm.org
Wed May 29 13:38:33 PDT 2024
================
@@ -1071,6 +1071,8 @@ def StdC : StandardSpec<"stdc"> {
FunctionSpec<"_Exit", RetValSpec<NoReturn>, [ArgSpec<IntType>]>,
FunctionSpec<"exit", RetValSpec<NoReturn>, [ArgSpec<IntType>]>,
FunctionSpec<"atexit", RetValSpec<IntType>, [ArgSpec<AtexitHandlerT>]>,
+ FunctionSpec<"quick_exit", RetValSpec<NoReturn>, [ArgSpec<IntType>]>,
+
----------------
michaelrj-google wrote:
nit: remove this extra line
https://github.com/llvm/llvm-project/pull/93621
More information about the libc-commits
mailing list