]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - test/elf/Hexagon/Inputs/got-plt-order.c
Vendor import of lld trunk r233088:
[FreeBSD/FreeBSD.git] / test / elf / Hexagon / Inputs / got-plt-order.c
1 int c = 10;
2 int fn() { c = 20; return 0; }
3
4 int fn1() {
5   return fn();
6 }