From c700e762785f96d2ca25a8d8cccb4c8135e8abde Mon Sep 17 00:00:00 2001 From: Alexey Samsonov Date: Mon, 25 Nov 2013 15:12:40 +0000 Subject: [PATCH] [UBSan] Fix warning by specifying __extension__ before __int128 llvm-svn: 195648 --- compiler-rt/lib/ubsan/ubsan_value.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/compiler-rt/lib/ubsan/ubsan_value.h b/compiler-rt/lib/ubsan/ubsan_value.h index 54ed5ad1931f..932b0fa3a901 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