diff options
author | Alexey Samsonov <samsonov@google.com> | 2013-11-25 15:12:40 +0000 |
---|---|---|
committer | Alexey Samsonov <samsonov@google.com> | 2013-11-25 15:12:40 +0000 |
commit | c700e762785f96d2ca25a8d8cccb4c8135e8abde (patch) | |
tree | 4dafc4cdb71cbb0f521c79bcc71ae1b70aa12c65 | |
parent | 0d455abeba780e381961d21d9b33f0c235908a68 (diff) | |
download | bcm5719-llvm-c700e762785f96d2ca25a8d8cccb4c8135e8abde.tar.gz bcm5719-llvm-c700e762785f96d2ca25a8d8cccb4c8135e8abde.zip |
[UBSan] Fix warning by specifying __extension__ before __int128
llvm-svn: 195648
-rw-r--r-- | compiler-rt/lib/ubsan/ubsan_value.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler-rt/lib/ubsan/ubsan_value.h b/compiler-rt/lib/ubsan/ubsan_value.h index 54ed5ad1931..932b0fa3a90 100644 --- a/compiler-rt/lib/ubsan/ubsan_value.h +++ b/compiler-rt/lib/ubsan/ubsan_value.h @@ -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 |