Changeset d96f7c4 for src/CodeGen/CodeGenerator.cpp
- Timestamp:
- Jan 17, 2025, 3:46:34 PM (2 months ago)
- Branches:
- master
- Children:
- df56e25
- Parents:
- 3b340d68
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified src/CodeGen/CodeGenerator.cpp ¶
r3b340d68 rd96f7c4 9 9 // Author : Andrew Beach 10 10 // Created On : Tue Oct 17 15:54:00 2023 11 // Last Modified By : Andrew Beach12 // Last Modified On : Wed Oct 25 18:28:00 202313 // Update Count : 011 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Fri Jan 17 14:19:22 2025 13 // Update Count : 1 14 14 // 15 15 … … 1092 1092 case ast::BranchStmt::FallThrough: 1093 1093 case ast::BranchStmt::FallThroughDefault: 1094 assertf( !options.genC, "fallthr ushould not reach code generation." );1095 output << "fallthr u";1094 assertf( !options.genC, "fallthrough should not reach code generation." ); 1095 output << "fallthrough"; 1096 1096 break; 1097 1097 default: 1098 1098 assertf( false, "Bad BranchStmt value." ); 1099 1099 } 1100 // Print branch target for labelled break/continue/fallthr uin debug mode.1100 // Print branch target for labelled break/continue/fallthrough in debug mode. 1101 1101 if ( !options.genC && stmt->kind != ast::BranchStmt::Goto ) { 1102 1102 if ( !stmt->target.empty() ) {
Note: See TracChangeset
for help on using the changeset viewer.