| author | |
| committer | |
| log | 20ac2538593e92844e3d723adf3870eef395ff61 |
| tree | baf030fd05f827317758e8018b6ccd8f3ac88156 |
| parent | c0242f23102ebcc444e20042d5a988af9ebe4685 |
| signature |
Fix compilation w/ clang
f83bb3dd9e68899ca39cdddb7d84c2ad1c833d551 files changed, 1 insertions(+), 1 deletions(-)
lib/libc/include/any-windows-any/intrin.h+1-1| ... | ... | @@ -50,7 +50,7 @@ |
| 50 | 50 | * On GCC 4.9 we may always include those headers. On older GCCs, we may do it only if CPU |
| 51 | 51 | * features used by them are enabled, so we need to check macros like __SSE__ or __MMX__ first. |
| 52 | 52 | */ |
| 53 | #if __MINGW_GNUC_PREREQ(4, 9) | |
| 53 | #if __MINGW_GNUC_PREREQ(4, 9) || defined(__clang__) | |
| 54 | 54 | #define __MINGW_FORCE_SYS_INTRINS |
| 55 | 55 | #endif |
| 56 | 56 |