Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/CodeGen/CodeGenerator.h

    r42a36d9 r0f79853  
    1010// Created On       : Mon May 18 07:44:20 2015
    1111// Last Modified By : Andrew Beach
    12 // Last Modified On : Tue Apr 30 12:01:00 2019
    13 // Update Count     : 57
     12// Last Modified On : Fri Aug 18 15:40:00 2017
     13// Update Count     : 56
    1414//
    1515
     
    2020#include <string>                 // for string
    2121
    22 #include "CodeGen/Options.h"      // for Options
    2322#include "Common/Indenter.h"      // for Indenter
    2423#include "Common/PassVisitor.h"   // for PassVisitor
     
    3231
    3332                CodeGenerator( std::ostream &os, bool pretty = false, bool genC = false, bool lineMarks = false, bool printExprTypes = false );
    34                 CodeGenerator( std::ostream &os, const Options &options );
    3533
    3634                //*** Turn off visit_children for all nodes
     
    146144                std::ostream & output;
    147145                LabelPrinter printLabels;
    148                 Options options;
     146                bool pretty = false;  // pretty print
     147                bool genC = false;    // true if output has to be C code
     148                bool lineMarks = false;
     149                bool printExprTypes = false;
    149150        public:
    150151                LineEnder endl;
Note: See TracChangeset for help on using the changeset viewer.