Delete unused code.
authormjsousa
Sat, 06 Jun 2015 18:58:50 +0100
changeset 1001 f6ed7dcfc53e
parent 1000 556b74055518
child 1002 45bd3e90ecec
Delete unused code.
stage4/generate_c/generate_c_inlinefcall.cc
--- a/stage4/generate_c/generate_c_inlinefcall.cc	Thu Apr 30 20:54:04 2015 +0100
+++ b/stage4/generate_c/generate_c_inlinefcall.cc	Sat Jun 06 18:58:50 2015 +0100
@@ -37,22 +37,6 @@
     } variablegeneration_t;
 
   private:
-     /* The result of the comparison IL operations (GT, EQ, LT, ...)
-     * is a boolean variable.
-     * This class keeps track of the current data type stored in the
-     * il default variable. This is usually done by keeping a reference
-     * to the data type of the last operand. Nevertheless, in the case of
-     * the comparison IL operators, the data type of the result (a boolean)
-     * is not the data type of the operand. We therefore need an object
-     * of the boolean data type to keep as a reference of the current
-     * data type.
-     * The following object is it...
-     */
-    bool_type_name_c bool_type;
-    lint_type_name_c lint_type;
-    lword_type_name_c lword_type;
-    lreal_type_name_c lreal_type;
-
     /* The name of the IL default variable... */
     #define IL_DEFVAR   VAR_LEADER "IL_DEFVAR"