https://gcc.gnu.org/bugzilla/show_bug.cgi?id=104603
--- Comment #5 from herumi <herumi at nifty dot com> ---
>Can you file a seperate issue with the preprocessed source (-save-temps) since
>it really does look like a seperate issue all together.
May I attach a zipped a.ii which is generated by the following commands?
The size of a.ii is over 1700KiB.
---
>cat a.cpp
#include <xbyak/xbyak.h>
using namespace Xbyak::util;
void f()
{
ptr[eax] == ptr[eax];
}
---
---
g++-11.2 -O2 -I ../ -Warray-bounds -c a.cpp -save-temps
---