blob: 7047a3bb014d8c7bb1fa4121cfcc38f04344091d [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Simon Glass7f94e832017-11-12 21:52:25 -07002/*
3 * Copyright (c) 2016 Google, Inc
4 *
Simon Glassa4e259e2021-11-03 21:09:16 -06005 * Simple program to create a bss_data region so the symbol can be read
Simon Glass24ad3652017-11-13 18:54:54 -07006 * by binutils. This is used by binman tests.
Simon Glass7f94e832017-11-12 21:52:25 -07007 */
8
9int bss_data[10];
Simon Glass7f94e832017-11-12 21:52:25 -070010
Simon Glass2cbd8a52023-07-18 07:24:00 -060011int main(void)
Simon Glass7f94e832017-11-12 21:52:25 -070012{
13 bss_data[2] = 2;
14
15 return 0;
16}