Changeset 8f910430 for tests/exceptions
- Timestamp:
- May 17, 2021, 11:43:49 AM (4 years ago)
- Branches:
- ADT, arm-eh, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, master, new-ast-unique-expr, pthread-emulation, qualifiedEnum
- Children:
- 90a10e8
- Parents:
- fc1347d0
- Location:
- tests/exceptions
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified tests/exceptions/virtual-cast.cfa ¶
rfc1347d0 r8f910430 16 16 // Hand defined alpha virtual type: 17 17 struct __cfatid_struct_alpha { 18 __cfa __parent_vtable const *parent;18 __cfavir_type_info parent; 19 19 }; 20 20 21 __attribute__(( section(".gnu.linkonce.__cfatid_alpha")))21 __attribute__(( cfa_linkonce )) 22 22 struct __cfatid_struct_alpha __cfatid_alpha = { 23 (__cfa __parent_vtable*)0,23 (__cfavir_type_info *)0, 24 24 }; 25 25 -
TabularUnified tests/exceptions/virtual-poly.cfa ¶
rfc1347d0 r8f910430 10 10 11 11 struct __cfatid_struct_mono_base { 12 __cfa __parent_vtableconst * parent;12 __cfavir_type_info const * parent; 13 13 }; 14 14 15 __attribute__(( section(".gnu.linkonce.__cfatid_mono_base")))15 __attribute__(( cfa_linkonce )) 16 16 struct __cfatid_struct_mono_base __cfatid_mono_base = { 17 (__cfa __parent_vtable*)0,17 (__cfavir_type_info *)0, 18 18 }; 19 19 … … 58 58 forall(U) 59 59 struct __cfatid_struct_poly_base { 60 __cfa __parent_vtableconst * parent;60 __cfavir_type_info const * parent; 61 61 }; 62 62 … … 87 87 88 88 __cfatid_struct_poly_base(int) __cfatid_poly_base @= { 89 (__cfa __parent_vtable*)0,89 (__cfavir_type_info *)0, 90 90 }; 91 91 __cfatid_struct_poly_child(int) __cfatid_poly_child = {
Note: See TracChangeset
for help on using the changeset viewer.