exynos-linux-stable/arch/arm64/crypto/first_file_asm.c
2023-02-21 00:11:01 +03:00

12 lines
366 B
C

__attribute__ ((section(".rodata"), unused))
const unsigned char first_crypto_asm_rodata = 0x10;
__attribute__ ((section(".text"), unused))
void first_crypto_asm_text(void){}
#ifdef CC_USE_CLANG
__attribute__ ((section(".init.text"), unused))
#else
__attribute__ ((section(".init.text"), optimize("-O0"), unused))
#endif
static void first_crypto_asm_init(void){};