1
0
Fork 0
arangodb/3rdParty/snappy/google-snappy-d53de18/build-tests/__builtin_expect.c

10 lines
153 B
C

/*
* build-tests/__builtin_expect.c
*
* test if the compiler has __builtin_expect().
*/
int main(void) {
return __builtin_expect(1, 1) ? 1 : 0;
}