Changeset d60a4c2 for tests/nowarn
- Timestamp:
- Jan 11, 2025, 5:48:46 PM (14 months ago)
- Branches:
- master, stuck-waitfor-destruct
- Children:
- f886608
- Parents:
- 7d65715f (diff), 32a119e9 (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. - Location:
- tests/nowarn
- Files:
-
- 2 added
- 2 edited
-
.expect/printf-sizeof.txt (added)
-
printf-sizeof.cfa (added)
-
unused.cfa (modified) (1 diff)
-
zero-thunk.cfa (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
tests/nowarn/unused.cfa
r7d65715f rd60a4c2 12 12 struct my_array { 13 13 float strides[N]; 14 }; 15 16 // layoutof curious_size_dep doesn't need sizeof T 17 forall(T *) 18 struct curious_size_dep { 19 int x; 14 20 }; 15 21 -
tests/nowarn/zero-thunk.cfa
r7d65715f rd60a4c2 6 6 forall( T ) 7 7 T g( zero_t ) { 8 printf( "% ld\n", sizeof(T) );8 printf( "%zd\n", sizeof(T) ); 9 9 return (T){}; 10 10 }
Note:
See TracChangeset
for help on using the changeset viewer.