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 c/46902] [4.6 Regression] gcc.dg/plugin/plugindir*.c gives ICEs on powerpc-apple-darwin9


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

--- Comment #15 from Iain Sandoe <iains at gcc dot gnu.org> 2010-12-14 13:41:02 UTC ---
OK, seems to be related to _Bool vs. unsigned char.

e.g.:

  unsigned char x_exit_after_options;
#define exit_after_options global_options.x_exit_after_options

c.f.

  _Bool x_exit_after_options;
#define exit_after_options global_options.x_exit_after_options

not sure where that is coming from...


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