This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug rtl-optimization/34132] [4.3 Regression] ICE: internal consistency failure (invalid rtl sharing found in the insn)
- From: "tbm at cyrius dot com" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: 17 Nov 2007 11:59:49 -0000
- Subject: [Bug rtl-optimization/34132] [4.3 Regression] ICE: internal consistency failure (invalid rtl sharing found in the insn)
- References: <bug-34132-12387@http.gcc.gnu.org/bugzilla/>
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
------- Comment #2 from tbm at cyrius dot com 2007-11-17 11:59 -------
/* Testcase by Martin Michlmayr <tbm@cyrius.com> */
static char *sd_msg = "%s%u.msg";
void SdmOpenMsg (short mode, char *msgname, int filemode)
{
if (mode == 0)
{
xprintf (msgname, (char *) sd_msg);
filemode = 1;
}
else if (mode == 1)
filemode = 00;
xprintf (msgname, (char *) sd_msg);
xprintf (filemode, "%d");
}
--
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=34132