forked from OSchip/llvm-project
[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:
parent
166563fdc7
commit
a707675dbb
|
@ -22,7 +22,7 @@
|
|||
|
||||
#undef HAS_FLOAT128
|
||||
#if __x86_64__
|
||||
#if __GNUC__ >= 7 || __clang_major >= 7
|
||||
#if __GNUC__ >= 7 || __clang_major__ >= 7
|
||||
#define HAS_FLOAT128 1
|
||||
#endif
|
||||
#elif defined __PPC__ && __GNUC__ >= 8
|
||||
|
|
Loading…
Reference in New Issue