- File:
-
- 1 edited
-
src/ControlStruct/ExceptTranslateNew.cpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/ControlStruct/ExceptTranslateNew.cpp
re8616b6 r400b8be 190 190 location, 191 191 "__handler_index", 192 new ast::BasicType( ast::BasicType::SignedInt ) 192 new ast::BasicType(ast::BasicType::SignedInt), 193 nullptr, //init 194 ast::Storage::Classes{}, 195 ast::Linkage::Cforall 193 196 ); 194 197 } … … 200 203 location, 201 204 "__exception_inst", 202 new ast::PointerType( new ast::StructInstType( except_decl ) ) 205 new ast::PointerType( 206 new ast::StructInstType( except_decl ) 207 ), 208 nullptr, //init 209 ast::Storage::Classes{}, 210 ast::Linkage::Cforall 203 211 ); 204 212 }
Note:
See TracChangeset
for help on using the changeset viewer.