/* TAGS: c todo */ /* VERIFY_OPTS: --sequential -o nofail:malloc */ extern void __VERIFIER_error() __attribute__ ((__noreturn__)); void __VERIFIER_assert(int cond) { if(!(cond)) { ERROR: __VERIFIER_error(); } } #define N 100000 int main( ) { int a[N]; int b[N]; int i; for( i = 0 ; i < N ; i++ ) { b[i] = a[N-i-1]; } int x; for ( x = 0 ; x < N ; x++ ) { __VERIFIER_assert( a[x] == b[N-x-1] ); } return 0; }