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/13122] h8300 - local variable gets corrupted by function call when -fomit-frame-pointer is given


------- Additional Comments From kazu at cs dot umass dot edu  2003-11-22 16:53 -------
Reduced to:

void foo (int, int, int, int);

char
bar (void)
{
  char a;
  foo (0, 0, 0, 0);
  a = 10;
  return a;
}



-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=13122


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