Changes in src/CodeGen/CodeGenerator.cc [fb04321:08d5507b]
- File:
-
- 1 edited
-
src/CodeGen/CodeGenerator.cc (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/CodeGen/CodeGenerator.cc
rfb04321 r08d5507b 10 10 // Created On : Mon May 18 07:44:20 2015 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Thu Mar 16 09:09:09 201713 // Update Count : 4 8012 // Last Modified On : Mon Mar 13 23:56:59 2017 13 // Update Count : 477 14 14 // 15 15 … … 134 134 135 135 handleStorageClass( functionDecl ); 136 functionDecl->get_funcSpec().print( output);136 DeclarationNode::print_FuncSpec( output, functionDecl->get_funcSpec() ); 137 137 138 138 output << genType( functionDecl->get_functionType(), mangleName( functionDecl ), pretty ); … … 895 895 896 896 void CodeGenerator::handleStorageClass( DeclarationWithType * decl ) { 897 if ( decl->get_storageClasses(). any()) {898 decl->get_storageClasses().print( output);897 if ( decl->get_storageClasses().val != 0 ) { 898 DeclarationNode::print_StorageClass( output, decl->get_storageClasses() ); 899 899 } // if 900 900 } // CodeGenerator::handleStorageClass
Note:
See TracChangeset
for help on using the changeset viewer.