diff options
| author | Tim Northover <tnorthover@apple.com> | 2014-02-21 12:16:59 +0000 | 
|---|---|---|
| committer | Tim Northover <tnorthover@apple.com> | 2014-02-21 12:16:59 +0000 | 
| commit | a0c95eb2d6490fff3a2566c150e31dc98783b4b9 (patch) | |
| tree | aea41f16c45e81628e9c873ea5391fe5bd6e3c0d /clang | |
| parent | 8fe03d61115a2097cc84e0075dd383696c344405 (diff) | |
| download | bcm5719-llvm-a0c95eb2d6490fff3a2566c150e31dc98783b4b9.tar.gz bcm5719-llvm-a0c95eb2d6490fff3a2566c150e31dc98783b4b9.zip  | |
Remove commas at the end of lists (C++11 again)
llvm-svn: 201849
Diffstat (limited to 'clang')
| -rw-r--r-- | clang/lib/CodeGen/CGBuiltin.cpp | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/lib/CodeGen/CGBuiltin.cpp b/clang/lib/CodeGen/CGBuiltin.cpp index feb585010e2..eb2df93f286 100644 --- a/clang/lib/CodeGen/CGBuiltin.cpp +++ b/clang/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  | 

