• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // Compile with:
2 // gcc -gctf -shared -o libobj-v0.so obj-v0.c
3 
4 struct S0
5 {
6   int mem0;
7 };
8 
9 struct S1
10 {
11 };
12 
13 void
bar(struct S0 * s)14 bar(struct S0 *s)
15 {}
16 
17 void
foo(struct S1 * s)18 foo(struct S1 *s)
19 {}
20