Remove extra semi-colons.
authorChad Rosier <mcrosier@apple.com>
Wed, 22 Feb 2012 17:25:00 +0000 (17:25 +0000)
committerChad Rosier <mcrosier@apple.com>
Wed, 22 Feb 2012 17:25:00 +0000 (17:25 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@151169 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Analysis/RegionInfo.cpp
lib/CodeGen/BranchFolding.cpp
lib/Support/DataExtractor.cpp
lib/Target/ARM/ARMBaseRegisterInfo.cpp
lib/Target/MSP430/MSP430ISelLowering.cpp
lib/Target/X86/X86Subtarget.cpp
lib/VMCore/GCOV.cpp

index 828913dd7b693f5589624f515ca87cd323059de0..b507b1e340f5789cd0d7e5afcff3fe64bc699c30 100644 (file)
@@ -650,7 +650,7 @@ void RegionInfo::buildRegionsTree(DomTreeNode *N, Region *region) {
   // This basic block is a start block of a region. It is already in the
   // BBtoRegion relation. Only the child basic blocks have to be updated.
   if (it != BBtoRegion.end()) {
-    Region *newRegion = it->second;;
+    Region *newRegion = it->second;
     region->addSubRegion(getTopMostParent(newRegion));
     region = newRegion;
   } else {
index 6aa170b536e4cd8f94b25d368174b31ff40d437c..272e9f93dc9d68b8ce2f77b12a31a6ab7ee18bf1 100644 (file)
@@ -1111,7 +1111,7 @@ ReoptimizeBlock:
         }
       }
       PrevBB.splice(PrevBB.end(), MBB, MBB->begin(), MBB->end());
-      PrevBB.removeSuccessor(PrevBB.succ_begin());;
+      PrevBB.removeSuccessor(PrevBB.succ_begin());
       assert(PrevBB.succ_empty());
       PrevBB.transferSuccessors(MBB);
       MadeChange = true;
@@ -1670,7 +1670,7 @@ bool BranchFolder::HoistCommonCodeInSuccs(MachineBasicBlock *MBB) {
         LocalDefsSet.insert(*OR);
     }
 
-    HasDups = true;;
+    HasDups = true;
     ++TIB;
     ++FIB;
   }
index b946c1df83630d03af0ba913a7e798668ee09d98..dc21155a06240f6db646e1f3454f63196e02ad60 100644 (file)
@@ -75,7 +75,7 @@ uint32_t DataExtractor::getU32(uint32_t *offset_ptr) const {
 uint32_t *DataExtractor::getU32(uint32_t *offset_ptr, uint32_t *dst,
                                 uint32_t count) const {
   return getUs<uint32_t>(offset_ptr, dst, count, this, IsLittleEndian,
-                        Data.data());;
+                        Data.data());
 }
 
 uint64_t DataExtractor::getU64(uint32_t *offset_ptr) const {
index 88662a9203844b2b1857973af6ad004f21046127..2608685e045f595351e46cc3225cd1d04108bf48 100644 (file)
@@ -779,7 +779,7 @@ int64_t ARMBaseRegisterInfo::
 getFrameIndexInstrOffset(const MachineInstr *MI, int Idx) const {
   const MCInstrDesc &Desc = MI->getDesc();
   unsigned AddrMode = (Desc.TSFlags & ARMII::AddrModeMask);
-  int64_t InstrOffs = 0;;
+  int64_t InstrOffs = 0;
   int Scale = 1;
   unsigned ImmIdx = 0;
   switch (AddrMode) {
index d1bfa574db2b035b6e981dbfedb6792a12bb1e5d..1c69f61d09ed8d5e013ad67e270548f6f68141f6 100644 (file)
@@ -644,7 +644,7 @@ SDValue MSP430TargetLowering::LowerExternalSymbol(SDValue Op,
   const char *Sym = cast<ExternalSymbolSDNode>(Op)->getSymbol();
   SDValue Result = DAG.getTargetExternalSymbol(Sym, getPointerTy());
 
-  return DAG.getNode(MSP430ISD::Wrapper, dl, getPointerTy(), Result);;
+  return DAG.getNode(MSP430ISD::Wrapper, dl, getPointerTy(), Result);
 }
 
 SDValue MSP430TargetLowering::LowerBlockAddress(SDValue Op,
@@ -653,7 +653,7 @@ SDValue MSP430TargetLowering::LowerBlockAddress(SDValue Op,
   const BlockAddress *BA = cast<BlockAddressSDNode>(Op)->getBlockAddress();
   SDValue Result = DAG.getBlockAddress(BA, getPointerTy(), /*isTarget=*/true);
 
-  return DAG.getNode(MSP430ISD::Wrapper, dl, getPointerTy(), Result);;
+  return DAG.getNode(MSP430ISD::Wrapper, dl, getPointerTy(), Result);
 }
 
 static SDValue EmitCMP(SDValue &LHS, SDValue &RHS, SDValue &TargetCC,
index f1ef118881b334f8e689eb0fa052f50177932c63..3eb9441b9725f582333c143b03dd99822f1b30ff 100644 (file)
@@ -302,7 +302,7 @@ void X86Subtarget::AutoDetectSubtargetFeatures() {
       }
       // FIXME: AVX2 codegen support is not ready.
       //if ((EBX >> 5) & 0x1) {
-      //  X86SSELevel = AVX2;;
+      //  X86SSELevel = AVX2;
       //  ToggleFeature(X86::FeatureAVX2);
       //}
       if ((EBX >> 8) & 0x1) {
index fc7f96fccaaa9ee56860920846d18d948fd2b84a..595c452359954501e04aa3281d63c547c0336674 100644 (file)
@@ -107,7 +107,7 @@ bool GCOVFunction::read(GCOVBuffer &Buff, GCOVFormat Format) {
     for (unsigned i = 0, e = Count; i != e; ++i) {
       Blocks[i]->addCount(Buff.readInt64());
     }
-    return true;;
+    return true;
   }
 
   LineNumber = Buff.readInt();