2018-05-06 17:58:06 -04:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
2017-11-12 21:52:25 -07:00
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2016 Google, Inc
|
|
|
|
|
*
|
|
|
|
|
* Simple program to create a _dt_ucode_base_size symbol which can be read
|
2017-11-13 18:54:54 -07:00
|
|
|
* by binutils. This is used by binman tests.
|
2017-11-12 21:52:25 -07:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
int bss_data[10];
|
|
|
|
|
int __bss_size = sizeof(bss_data);
|
|
|
|
|
|
|
|
|
|
int main()
|
|
|
|
|
{
|
|
|
|
|
bss_data[2] = 2;
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|