Changeset 7042c60 for src/CodeGen
- Timestamp:
- Apr 25, 2024, 3:48:17 PM (20 months ago)
- Branches:
- master
- Children:
- eb7586e
- Parents:
- cf191ac (diff), 55c97e4 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)links above to see all the changes relative to each parent. - File:
-
- 1 edited
-
src/CodeGen/CodeGenerator.cpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/CodeGen/CodeGenerator.cpp
rcf191ac r7042c60 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.