]> granicus.if.org Git - clang/commitdiff
NFC: Remove extraneous semicolons as pointed out in the differential review
authorNemanja Ivanovic <nemanja.i.ibm@gmail.com>
Thu, 19 Jul 2018 12:49:27 +0000 (12:49 +0000)
committerNemanja Ivanovic <nemanja.i.ibm@gmail.com>
Thu, 19 Jul 2018 12:49:27 +0000 (12:49 +0000)
The commit for
https://reviews.llvm.org/D49424
missed the comment about the extraneous semicolons. Remove them.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@337451 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/CGBuiltin.cpp

index 7deeea811b767c9735ff13b617858d252d1873f6..07cb1c3adf66a4352f6c7fc7d277a6e567ce963c 100644 (file)
@@ -10834,8 +10834,8 @@ Value *CodeGenFunction::EmitPPCBuiltinExpr(unsigned BuiltinID,
     // Account for endianness by treating this as just a shuffle. So we use the
     // same indices for both LE and BE in order to produce expected results in
     // both cases.
-    unsigned ElemIdx0 = (Index & 2) >> 1;;
-    unsigned ElemIdx1 = 2 + (Index & 1);;
+    unsigned ElemIdx0 = (Index & 2) >> 1;
+    unsigned ElemIdx1 = 2 + (Index & 1);
 
     Constant *ShuffleElts[2] = {ConstantInt::get(Int32Ty, ElemIdx0),
                                 ConstantInt::get(Int32Ty, ElemIdx1)};