u-boot/tools/binman/test/elf_sections.c

21 lines
309 B
C
Raw Normal View History

// SPDX-License-Identifier: GPL-2.0+
/*
* Copyright 2022 Google LLC
*
* Program containing two text sections
*/
int __attribute__((section(".sram_data"))) data[29];
int __attribute__((section(".sram_code"))) calculate(int x)
{
data[0] = x;
return x * x;
}
int main(void)
{
return calculate(123);
}