Changes in tests/polymorphism.cfa [ba8547e:801978b]
- File:
-
- 1 edited
-
tests/polymorphism.cfa (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
tests/polymorphism.cfa
rba8547e r801978b 71 71 printf(" offset of inner float: %ld\n", ((char *) & x_inner_float ) - ((char *) & x) ); 72 72 73 void showStatic( thing( long longint) & x ) {73 void showStatic( thing(int) & x ) { 74 74 printf("static:\n"); 75 75 SHOW_OFFSETS … … 85 85 86 86 printf("=== checkPlan9offsets\n"); 87 thing( long longint) x;87 thing(int) x; 88 88 showStatic(x); 89 89 showDynamic(x);
Note:
See TracChangeset
for help on using the changeset viewer.