From 514e1ea733ba198eae079cd8f3c1dbf073ecf2c7 Mon Sep 17 00:00:00 2001 From: Tim Northover Date: Fri, 21 Feb 2014 12:16:59 +0000 Subject: [PATCH] Remove commas at the end of lists (C++11 again) git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@201849 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/CodeGen/CGBuiltin.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/CodeGen/CGBuiltin.cpp b/lib/CodeGen/CGBuiltin.cpp index feb585010e..eb2df93f28 100644 --- a/lib/CodeGen/CGBuiltin.cpp +++ b/lib/CodeGen/CGBuiltin.cpp @@ -1770,7 +1770,7 @@ enum { VectorRetGetArgs01 = AddRetType | Add2ArgTypes | VectorizeRetType | VectorizeArgTypes, FpCmpzModifiers = - AddRetType | VectorizeRetType | Add1ArgType | InventFloatType, + AddRetType | VectorizeRetType | Add1ArgType | InventFloatType }; struct NeonIntrinsicInfo { @@ -2339,7 +2339,7 @@ static NeonIntrinsicInfo ARMSIMDIntrinsicMap [] = { NEONMAP0(vuzp_v), NEONMAP0(vuzpq_v), NEONMAP0(vzip_v), - NEONMAP0(vzipq_v), + NEONMAP0(vzipq_v) }; #undef NEONMAP0 -- 2.40.0