From: Benjamin Kramer Date: Tue, 29 Dec 2009 22:17:06 +0000 (+0000) Subject: remove a really wrong parenthesis. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=c17300f3c55fb0d44806578cf50f051c98780b61;p=oota-llvm.git remove a really wrong parenthesis. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@92277 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/AsmParser/LLParser.cpp b/lib/AsmParser/LLParser.cpp index 9de1cafb5e0..a849eb75358 100644 --- a/lib/AsmParser/LLParser.cpp +++ b/lib/AsmParser/LLParser.cpp @@ -496,7 +496,7 @@ bool LLParser::ParseMDNode(MDNode *&Result) { // FIXME: This is not unique enough! std::string FwdRefName = "llvm.mdnode.fwdref." + utostr(MID); - Value *V = MDString::get(Context, FwdRefName)); + Value *V = MDString::get(Context, FwdRefName); MDNode *FwdNode = MDNode::get(Context, &V, 1); ForwardRefMDNodes[MID] = std::make_pair(FwdNode, Lex.getLoc()); Result = FwdNode;