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