xref: /aosp_15_r20/external/stg/test_cases/info_tests/symbol/absolute_object.c (revision 9e3b08ae94a55201065475453d799e8b1378bea6)
1 // Create ELF symbol that is global object and has absolute value
2 __asm__(
3     ".global bar\n"
4     ".type bar,object\n"
5     "bar = 0x1\n");
6 
7 long x, y;