I have confirmed that the following error occurs in the latest trunk version. (using r6467.)
This error is caused by the changes of r6463.
[test code - test.c]
#include <math.h> float foo(float f, float g) { return isnan(f); } int main(void){ return 0; }
[command line]
gcc -std=c99 test.c
[error log]
test.c:2:1: error: unknown type name 'typeof'
[note]
'typeof' is gcc extension.
It cannot be used under c99 mode.
Thank you.
Thanks, fixed in r6470.