Changes in src/CodeGen/CodeGenerator.h [dd020c0:5f642e38]
- File:
-
- 1 edited
-
src/CodeGen/CodeGenerator.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/CodeGen/CodeGenerator.h
rdd020c0 r5f642e38 30 30 static int tabsize; 31 31 32 CodeGenerator( std::ostream &os, bool pretty = false );32 CodeGenerator( std::ostream &os, bool pretty = false, bool genC = false ); 33 33 CodeGenerator( std::ostream &os, std::string, int indent = 0, bool infun = false ); 34 34 CodeGenerator( std::ostream &os, char *, int indent = 0, bool infun = false ); … … 121 121 LabelPrinter printLabels; 122 122 bool pretty = false; // pretty print 123 bool genC = false; // true if output has to be C code 123 124 124 125 void printDesignators( std::list< Expression * > & ); 125 126 void handleStorageClass( DeclarationWithType *decl ); 126 void handleAggregate( AggregateDecl *aggDecl );127 void handleAggregate( AggregateDecl *aggDecl, const std::string & kind ); 127 128 void handleTypedef( NamedTypeDecl *namedType ); 128 129 std::string mangleName( DeclarationWithType * decl );
Note:
See TracChangeset
for help on using the changeset viewer.