Attention is currently required from: Nico Huber, Angel Pons, Anastasia Klimchuk.
3 comments:
File hwaccess_x86_io_unittest.h:
`#if defined(__i386__) || defined(__x86_64__)`
Patch Set #2, Line 41: #if IS_X86 && defined(__linux__) || defined(__GLIBC__)
For the `IS_x86`, don't guard #include stmt's as it adds a lot of cyclomatic complexity to the preprocessor pass. Guarding #include's for multi-platform reasons maybe unavoidable.
Simply guard the whole file as this only applies on platforms with ported io (i.e., x86). It will then evaluate as a empty include file, this lets the toolchain do its job.
`#endif /* __i386__ || __x86_64__ */`
To view, visit change 55741. To unsubscribe, or for help writing mail filters, visit settings.