Lines Matching +full:gcc +full:- +full:c
12 int c = a;
15 c -= b;
17 return baz (c);
20 # = hello.c =
34 r -= m;
46 return f > 0 ? frob (f - 1, m) : 0;
49 # = world.c =
75 $ gcc -gdwarf-4 -gno-as-loc-support -gno-variable-location-views -O2 -c world.c
76 $ gcc -gdwarf-4 -gno-as-loc-support -gno-variable-location-views -O2 -c hello.c
77 $ gcc -o testfile-dwarf-4 hello.o world.o
79 $ gcc -gdwarf-5 -gno-as-loc-support -gno-variable-location-views -O2 -c world.c
80 $ gcc -gdwarf-5 -gno-as-loc-support -gno-variable-location-views -O2 -c hello.c
81 $ gcc -o testfile-dwarf-5 hello.o world.o
83 $ gcc -gdwarf-4 -gsplit-dwarf -gno-as-loc-support -gno-variable-location-views -O2 -o testfile-worl…
84 $ gcc -gdwarf-4 -gsplit-dwarf -gno-as-loc-support -gno-variable-location-views -O2 -o testfile-hell…
85 $ gcc -o testfile-splitdwarf-4 testfile-hello4.o testfile-world4.o
87 $ gcc -gdwarf-5 -gsplit-dwarf -gno-as-loc-support -gno-variable-location-views -O2 -o testfile-worl…
88 $ gcc -gdwarf-5 -gsplit-dwarf -gno-as-loc-support -gno-variable-location-views -O2 -o testfile-hell…
89 $ gcc -o testfile-splitdwarf-5 testfile-hello5.o testfile-world5.o