1
1
mirror of https://github.com/systemd/systemd-stable.git synced 2025-01-18 06:03:42 +03:00

boot: Ensure raise() is not dropped by LTO

This commit is contained in:
Jan Janssen 2023-02-12 20:23:18 +01:00
parent 1d362bdf0f
commit ec96dad2f4

View File

@ -724,6 +724,6 @@ void *find_configuration_table(const EFI_GUID *guid) {
/* libgcc's __aeabi_ldiv0 intrinsic will call raise() on division by zero, so we /* libgcc's __aeabi_ldiv0 intrinsic will call raise() on division by zero, so we
* need to provide one ourselves for now. */ * need to provide one ourselves for now. */
_noreturn_ int raise(int sig) { _used_ _noreturn_ int raise(int sig) {
assert_not_reached(); assert_not_reached();
} }