Changeset 2e63915 for tests/array-collections/dimexpr-match-c.cfa
- Timestamp:
- Jan 3, 2025, 5:07:43 PM (3 weeks ago)
- Branches:
- master
- Children:
- 8893ad4
- Parents:
- 2a32118
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
tests/array-collections/dimexpr-match-c.cfa
r2a32118 r2e63915 26 26 int mut7 = 7, mut42 = 42; 27 27 28 // Many are only used in rejection cases, so they are unused in the non-ERRS compilation. 29 (void) cpr7; 30 (void) cpr42; 31 (void) mut7; 32 (void) mut42; 33 28 34 #define TRY_COMPAT( LV, RV ) \ 29 35 { \ 30 void f( float (*x)[LV] ) { }\36 void f( float (*x)[LV] ) { (void) x; } \ 31 37 float a[RV]; \ 32 38 f( & a ); \ … … 39 45 float a[RV]; \ 40 46 float (*b)[LV] = & a; \ 47 (void) b; \ 41 48 } 42 49 ARRANGEMENT( PTRVAR_INIT )
Note: See TracChangeset
for help on using the changeset viewer.