Re: [PATCH 1/3] gcov: Cache source files

2024-09-08 Thread Jørgen Kvalsvik
On 8/23/24 09:39, Jan Hubicka wrote: Hi, 1:4:int notmain(const char *entity) -: == inlined from hello.h == 1:6: if (s) branch 0 taken 0 (fallthrough) branch 1 taken 1 #:7:printf ("hello, %s!\n", s); %:7-block 3 call0 never e

Re: [PATCH 1/3] gcov: Cache source files

2024-08-23 Thread Jørgen Kvalsvik
On 8/23/24 09:39, Jan Hubicka wrote: Hi, 1:4:int notmain(const char *entity) -: == inlined from hello.h == 1:6: if (s) branch 0 taken 0 (fallthrough) branch 1 taken 1 #:7:printf ("hello, %s!\n", s); %:7-block 3 call0 never e

Re: [PATCH 1/3] gcov: Cache source files

2024-08-23 Thread Jan Hubicka
Hi, > 1:4:int notmain(const char *entity) > -: == inlined from hello.h == > 1:6: if (s) > branch 0 taken 0 (fallthrough) > branch 1 taken 1 > #:7:printf ("hello, %s!\n", s); > %:7-block 3 > call0 never executed > -:8: e

[PATCH 1/3] gcov: Cache source files

2024-08-15 Thread Jørgen Kvalsvik
Cache the source files as they are read, rather than discarding them at the end of output_lines (), and move the reading of the source file to the new function slurp. This patch does not really change anything other than moving the file reading out of output_file, but set gcov up for more interact

[PATCH 1/3] gcov: Cache source files

2024-08-08 Thread Jørgen Kvalsvik
Cache the source files as they are read, rather than discarding them at the end of output_lines (), and move the reading of the source file to the new function slurp. This patch does not really change anything other than moving the file reading out of output_file, but set gcov up for more interact

[PATCH 1/3] gcov: Cache source files

2024-08-08 Thread Jørgen Kvalsvik
Cache the source files as they are read, rather than discarding them at the end of output_lines (), and move the reading of the source file to the new function slurp. This patch does not really change anything other than moving the file reading out of output_file, but set gcov up for more interact