This is the mail archive of the gcc-bugs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug target/68273] [5/6 Regression] Wrong code on mips/mipsel with -fipa-sra


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

--- Comment #8 from Richard Biener <rguenth at gcc dot gnu.org> ---
Also consider


typedef int myint __attribute__((align(1)));
void foo (int, int);

void bar()
{
  foo ((myint)1, (myint)2);
  foo (1, 2);
}

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]