From: Eric Christopher Date: Wed, 22 Feb 2012 08:46:02 +0000 (+0000) Subject: Remove extra semi-colon. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=e2dc9336d15ad3ca4f38d296d17f6682829b80b4;p=oota-llvm.git Remove extra semi-colon. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@151142 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/CodeGen/AsmPrinter/DwarfCompileUnit.cpp b/lib/CodeGen/AsmPrinter/DwarfCompileUnit.cpp index d8d1e5a78d3..a2a9e52b7b6 100644 --- a/lib/CodeGen/AsmPrinter/DwarfCompileUnit.cpp +++ b/lib/CodeGen/AsmPrinter/DwarfCompileUnit.cpp @@ -616,7 +616,7 @@ DIE *CompileUnit::getOrCreateTypeDIE(const MDNode *TyNode) { // A runtime language of 0 actually means C/C++ and that any // non-negative value is some version of Objective-C/C++. IsImplementation = (CT.getRunTimeLang() == 0) || - CT.isObjcClassComplete();; + CT.isObjcClassComplete(); } unsigned Flags = IsImplementation ? DwarfAccelTable::eTypeFlagClassIsImplementation : 0;