Eric Blake <[email protected]> writes:

> The problem we're up against is a broken C++ compiler.

Thanks, I understand now.

> what preprocessor flags to we examine in order to skip that
> particular portion of test-stdbool.c only for CC?  Or do we go full-bore
> and use #if 0, skipping test f everywhere?

How about guarding it with "#if defined __GNUC__ || !defined __cplusplus"?

Come to think of it, shouldn't the other instances "#if 0" in that file
be "#ifdef __GNUC__"?  For example, I don't see why the last "#if 0" is
needed, as it guards code that is already guarded by "#if defined
__xlc__ || defined __GNUC__".


Reply via email to