[llvm] c5877ec - Remove extraneous semicolon.

Bill Wendling via llvm-commits llvm-commits at lists.llvm.org
Tue Jan 7 12:49:21 PST 2020


Author: Bill Wendling
Date: 2020-01-07T12:49:09-08:00
New Revision: c5877ec9b4d533c489d088e70b2b119a7db976f1

URL: https://github.com/llvm/llvm-project/commit/c5877ec9b4d533c489d088e70b2b119a7db976f1
DIFF: https://github.com/llvm/llvm-project/commit/c5877ec9b4d533c489d088e70b2b119a7db976f1.diff

LOG: Remove extraneous semicolon.

Added: 
    

Modified: 
    llvm/utils/TableGen/GlobalISel/GIMatchTree.cpp

Removed: 
    


################################################################################
diff  --git a/llvm/utils/TableGen/GlobalISel/GIMatchTree.cpp b/llvm/utils/TableGen/GlobalISel/GIMatchTree.cpp
index dc46488ae624..b54a3e071ac0 100644
--- a/llvm/utils/TableGen/GlobalISel/GIMatchTree.cpp
+++ b/llvm/utils/TableGen/GlobalISel/GIMatchTree.cpp
@@ -641,7 +641,7 @@ void GIMatchTreeVRegDefPartitioner::addToPartition(bool Result,
     P = Partitions.insert(std::make_pair(I->second, BitVector())).first;
   P->second.resize(LeafIdx + 1);
   P->second.set(LeafIdx);
-};
+}
 
 void GIMatchTreeVRegDefPartitioner::repartition(
     GIMatchTreeBuilder::LeafVec &Leaves) {


        


More information about the llvm-commits mailing list