Look like clang no longer like label with the same name than an existing function:
------ AudioStream.cpp
extern “C” void exit(int) attribute((noreturn));
class CAStreamBasicDescription {
public:
char * AsString(char *buf) const {
char *theBuffer = buf;
if (buf <= 0) goto exit;
exit:
return 0;
}
};