Remove extraneous ';'.
authorBill Wendling <isanbard@gmail.com>
Thu, 17 May 2012 20:27:58 +0000 (20:27 +0000)
committerBill Wendling <isanbard@gmail.com>
Thu, 17 May 2012 20:27:58 +0000 (20:27 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@157011 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Analysis/InstructionSimplify.cpp

index 16e7a726595de487d48059b417e306d1073ae6a8..16a9a0481c5eb25077f1836589a1a0957704c0aa 100644 (file)
@@ -47,7 +47,7 @@ struct Query {
   const DominatorTree *DT;
 
   Query(const TargetData *td, const TargetLibraryInfo *tli,
-        const DominatorTree *dt) : TD(td), TLI(tli), DT(dt) {};
+        const DominatorTree *dt) : TD(td), TLI(tli), DT(dt) {}
 };
 
 static Value *SimplifyAndInst(Value *, Value *, const Query &, unsigned);