llvm-project
22 строки · 890.0 Байт
1//===-- crtend.c - End of constructors and destructors --------------------===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8
9#include <stdint.h>10
11// Put 4-byte zero which is the length field in FDE at the end as a terminator.
12const int32_t __EH_FRAME_LIST_END__[]13__attribute__((section(".eh_frame"), aligned(sizeof(int32_t)),14visibility("hidden"), used)) = {0};15
16#ifndef CRT_HAS_INITFINI_ARRAY17typedef void (*fp)(void);18fp __CTOR_LIST_END__[]19__attribute__((section(".ctors"), visibility("hidden"), used)) = {0};20fp __DTOR_LIST_END__[]21__attribute__((section(".dtors"), visibility("hidden"), used)) = {0};22#endif23