mirror of
https://github.com/intel/llvm.git
synced 2026-01-27 06:06:34 +08:00
[UBSan] Fix warning by specifying __extension__ before __int128
llvm-svn: 195648
This commit is contained in:
@@ -25,8 +25,8 @@
|
||||
|
||||
// FIXME: Move this out to a config header.
|
||||
#if __SIZEOF_INT128__
|
||||
typedef __int128 s128;
|
||||
typedef unsigned __int128 u128;
|
||||
__extension__ typedef __int128 s128;
|
||||
__extension__ typedef unsigned __int128 u128;
|
||||
#define HAVE_INT128_T 1
|
||||
#else
|
||||
#define HAVE_INT128_T 0
|
||||
|
||||
Reference in New Issue
Block a user