source: tests/link-once/main.cfa @ 10b5970

Last change on this file since 10b5970 was 10b5970, checked in by Michael Brooks <mlbrooks@…>, 2 weeks ago

Fix many test-suite- and libcfa-caused unused variable warnings.

In scope are easy fixes among tests whose sole warnings were unused variable. Reduces the wflags lax list by 40%.

  • Property mode set to 100644
File size: 378 bytes
RevLine 
[aff7e86]1// Test our new cfa_linkonce attribute:
2
[80f8703]3__attribute__(( cfa_linkonce )) signed int example = 7;
[aff7e86]4__attribute__(( cfa_linkonce )) unsigned int example = 12;
5
[c21f5a9]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}
10
[10b5970]11int main() {
[c21f5a9]12        printformat(example, example);
[aff7e86]13}
Note: See TracBrowser for help on using the repository browser.