https://gcc.gnu.org/bugzilla/show_bug.cgi?id=121084

Jørgen Kvalsvik <j at lambda dot is> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |j at lambda dot is

--- Comment #1 from Jørgen Kvalsvik <j at lambda dot is> ---
I think this is a duplicate of PR121123. After applying my fix I cannot
reproduce.

$ cat test.c.gcov
        -:    0:Source:test.c
        -:    0:Graph:test.gcno
        -:    0:Data:test.gcda
        -:    0:Runs:1
        3:    1:int main(void) {
        1:    2:    int i = 0;
        3:    3:    while (i < 2) {
        2:    4:        ++i;
        2:    5:        if (i == 1) {
        1:    6:            goto loop_start;
        -:    7:        }
        1:    8:    loop_start:
        2:    9:        continue;
        -:   10:    }
        1:   11:    return 0;
        -:   12:}

Reply via email to