Author: paultcochrane
Date: Mon Apr  9 02:25:01 2007
New Revision: 18057

Modified:
   trunk/compilers/imcc/imcc.l
   trunk/compilers/imcc/imcc.y

Log:
[imcc] Converted TODO items to RT tickets

Modified: trunk/compilers/imcc/imcc.l
==============================================================================
--- trunk/compilers/imcc/imcc.l (original)
+++ trunk/compilers/imcc/imcc.l Mon Apr  9 02:25:01 2007
@@ -168,7 +168,7 @@
             valp->s = IMCC_INFO(interp)->heredoc_content;
             yy_pop_state(yyscanner);
             yy_scan_string(IMCC_INFO(interp)->frames->heredoc_rest, yyscanner);
-            return(STRINGC); /* XXX delete quotes, -> emit, pbc */
+            return(STRINGC); /* RT#42382 delete quotes, -> emit, pbc */
         }
         else
         {
@@ -497,7 +497,7 @@
 
 <*>{STRINGCONSTANT} {
     valp->s = str_dup(yytext);
-        return(STRINGC); /* XXX delete quotes, -> emit, pbc */
+        return(STRINGC); /* RT#42382 delete quotes, -> emit, pbc */
     }
 
 <*>"<<"{STRINGCONSTANT} {
@@ -681,7 +681,7 @@
         mem_sys_free(frame->heredoc_rest);
     else
         ret = frame->s.line;
-    /* FIXME if frame->s.file was allocated free it */
+    /* RT#42383 if frame->s.file was allocated free it */
 
     mem_sys_free(frame);
 
@@ -953,7 +953,7 @@
         /* When an error occurs, then report it as being in a macro */
         frame->is_macro = 1;
         /* remember macro name for error reporting
-        TODO check that all the .file text is malloced / freed
+        RT#42384 check that all the .file text is malloced / freed
         */
         frame->s.file = str_dup(name);
         /* whitespace can be savely ignored */

Modified: trunk/compilers/imcc/imcc.y
==============================================================================
--- trunk/compilers/imcc/imcc.y (original)
+++ trunk/compilers/imcc/imcc.y Mon Apr  9 02:25:01 2007
@@ -43,7 +43,7 @@
 /*
  * Some convenient vars
  */
-/* FIXME: Remove this global variable... */
+/* RT#42385: Remove this global variable... */
 /* SymReg *cur_namespace;  ugly hack for mk_address */
 
 /*

Reply via email to