https://gcc.gnu.org/bugzilla/show_bug.cgi?id=115822
Andrew Pinski <pinskia at gcc dot gnu.org> changed:
What |Removed |Added
----------------------------------------------------------------------------
Severity|normal |enhancement
--- Comment #1 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
This is not going to work as gnu coding style is a mix of spaces and tabs
always.
From
https://gcc.gnu.org/onlinedocs/gcc-14.1.0/gcc/Warning-Options.html#index-Wmisleading-indentation
```
In the case of mixed tabs and spaces, the warning uses the -ftabstop= option to
determine if the statements line up (defaulting to 8).
```
So we could add a new option for that style but I really doubt we will. It will
definitely not be the default due to gnu coding style that is used inside gcc
itself.