forked from OSchip/llvm-project
[WebAssembly] clang supports int128_t on wasm32 in addition to wasm64.
llvm-svn: 257618
This commit is contained in:
parent
7169960f3d
commit
01731fc150
|
@ -61,7 +61,8 @@ typedef union
|
|||
} udwords;
|
||||
|
||||
/* MIPS64 issue: PR 20098 */
|
||||
#if defined(__LP64__) && !(defined(__mips__) && defined(__clang__))
|
||||
#if (defined(__LP64__) || defined(__wasm__)) && \
|
||||
!(defined(__mips__) && defined(__clang__))
|
||||
#define CRT_HAS_128BIT
|
||||
#endif
|
||||
|
||||
|
|
Loading…
Reference in New Issue