flang
flang copied to clipboard
win: use long double instead of __float128 on Windows platform
128 bit float is not supported on Windows platform and it causes build error.
long doubleis not 128 bits in size on windows? Does it make sense to dotypedef long double float128_t?
By default long double is 8 byte on Windows. It seems it needs to use '-mlong-double-128' compiler option to force long double to be 128 bits.
@bryanpkc @kiranchandramohan gentle ping?
@isuruf Do you approve this PR now? Was your comment sufficient addressed?