summaryrefslogtreecommitdiffstats
path: root/clang/lib/CodeGen
diff options
context:
space:
mode:
authorNemanja Ivanovic <nemanja.i.ibm@gmail.com>2018-07-19 12:49:27 +0000
committerNemanja Ivanovic <nemanja.i.ibm@gmail.com>2018-07-19 12:49:27 +0000
commit2600b839d5781bb7603cd7a2d7c994080156eb9b (patch)
treed9c9af86391d355a8caacbd8748968365937447b /clang/lib/CodeGen
parenta7c18ee8c4a0b0540963c2fe0b7b0a688de9c636 (diff)
downloadbcm5719-llvm-2600b839d5781bb7603cd7a2d7c994080156eb9b.tar.gz
bcm5719-llvm-2600b839d5781bb7603cd7a2d7c994080156eb9b.zip
NFC: Remove extraneous semicolons as pointed out in the differential review
The commit for https://reviews.llvm.org/D49424 missed the comment about the extraneous semicolons. Remove them. llvm-svn: 337451
Diffstat (limited to 'clang/lib/CodeGen')
-rw-r--r--clang/lib/CodeGen/CGBuiltin.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/lib/CodeGen/CGBuiltin.cpp b/clang/lib/CodeGen/CGBuiltin.cpp
index 7deeea811b7..07cb1c3adf6 100644
--- a/clang/lib/CodeGen/CGBuiltin.cpp
+++ b/clang/lib/CodeGen/CGBuiltin.cpp
@@ -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)};
OpenPOWER on IntegriCloud