source: tests/link-once/partner.cfa

Last change on this file was 80f8703, checked in by Peter A. Buhr <pabuhr@…>, 6 months ago

temporary fix to linkonce problem by changing -7 to 7 so initialization does not invoke an operator

  • Property mode set to 100644
File size: 327 bytes
Line 
1// Side file for the link-once test.
2
3__attribute__(( cfa_linkonce )) signed int example = 7;
4__attribute__(( cfa_linkonce )) unsigned int example = 12;
5
6__attribute__(( cfa_linkonce ))
7void printformat(signed int signed_value, unsigned int unsigned_value) {
8        printf("signed=%d unsigned=%d\n", signed_value, unsigned_value);
9}
Note: See TracBrowser for help on using the repository browser.