[flang][runtime] Enabled HAS_FLOAT128 for builds with clang.

I am building with clang, and I noticed for quite a while that
REAL(16) runtimes functions are not available. I did not know why
until I saw this typo.

Differential Revision: https://reviews.llvm.org/D134503
This commit is contained in:
Slava Zakharin 2022-09-22 16:58:53 -07:00
parent 166563fdc7
commit a707675dbb
1 changed files with 1 additions and 1 deletions

View File

@ -22,7 +22,7 @@
#undef HAS_FLOAT128 #undef HAS_FLOAT128
#if __x86_64__ #if __x86_64__
#if __GNUC__ >= 7 || __clang_major >= 7 #if __GNUC__ >= 7 || __clang_major__ >= 7
#define HAS_FLOAT128 1 #define HAS_FLOAT128 1
#endif #endif
#elif defined __PPC__ && __GNUC__ >= 8 #elif defined __PPC__ && __GNUC__ >= 8