]> git.saurik.com Git - apple/ld64.git/blob - unit-tests/test-cases/dwarf-debug-notes/other.cxx
dc4feb4961ea840b57b6c2f7fc8d89dab6be9b64
[apple/ld64.git] / unit-tests / test-cases / dwarf-debug-notes / other.cxx
1
2 #include "header.h"
3
4 int uninit;
5 int init = 1;
6 static int suninit;
7 static int sinit=0;
8
9 int bar(int x)
10 {
11 static int bar_uninit;
12 static int bar_init=3;
13 bar_uninit = x;
14 return 20 + suninit + sinit +
15 bar_init + bar_uninit + foo(x);
16 }
17
18