- Timestamp:
- Apr 25, 2024, 11:12:12 AM (8 months ago)
- Branches:
- master
- Children:
- 55c97e4
- Parents:
- 03b1815
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/CodeGen/CodeGenerator.cpp
r03b1815 ra1fbad0 167 167 ast::Pass<CodeGenerator> subCG( acc, subOptions ); 168 168 // Add the forall clause. 169 // TODO: These probably should be removed by now and the assert used.170 169 if ( !decl->type_params.empty() ) { 171 170 assertf( !options.genC, "FunctionDecl forall should not reach code generation." ); … … 174 173 acc << ")" << std::endl; 175 174 } 175 // The forall clause should be printed early as part of the preamble. 176 output << acc.str(); 177 acc.str(""); 176 178 177 179 acc << mangleName( decl );
Note: See TracChangeset
for help on using the changeset viewer.