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

--- Comment #3 from Kang-Che Sung <Explorer09 at gmail dot com> ---
Oops. I made a typo in the test code. func4() shouldn't have that redundant
brace.

The corrected example:

```
void func4(int x, int y) {
    int diff = x - y;
    if (diff > 0)
        putchar('>');
    if (x < y)
        putchar('<');
}
```

Reply via email to