cvsuser 05/03/31 03:12:31
Modified: imcc instructions.c Log: added a warning at the top of pasm files: # IMCC does produce b0rken PASM files # see http://[EMAIL PROTECTED]/rt3/Ticket/Display.html?id=32392 Revision Changes Path 1.69 +1 -0 parrot/imcc/instructions.c Index: instructions.c =================================================================== RCS file: /cvs/public/parrot/imcc/instructions.c,v retrieving revision 1.68 retrieving revision 1.69 diff -u -r1.68 -r1.69 --- instructions.c 13 Jan 2005 16:11:36 -0000 1.68 +++ instructions.c 31 Mar 2005 11:12:31 -0000 1.69 @@ -500,6 +500,7 @@ if (strcmp(file, "-")) freopen(file, "w", stdout); output = file; + printf( "# IMCC does produce b0rken PASM files\n# see http://[EMAIL PROTECTED]/rt3/Ticket/Display.html?id=32392\n" ); return 1; }
