projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
42991ee
)
remove a really wrong parenthesis.
author
Benjamin Kramer
<benny.kra@googlemail.com>
Tue, 29 Dec 2009 22:17:06 +0000
(22:17 +0000)
committer
Benjamin Kramer
<benny.kra@googlemail.com>
Tue, 29 Dec 2009 22:17:06 +0000
(22:17 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@92277
91177308
-0d34-0410-b5e6-
96231b3b80d8
lib/AsmParser/LLParser.cpp
patch
|
blob
|
history
diff --git
a/lib/AsmParser/LLParser.cpp
b/lib/AsmParser/LLParser.cpp
index 9de1cafb5e07b205a4a8fcbb65adeab13968e00f..a849eb753587295adcc24d78c08ab31e28607b14 100644
(file)
--- 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;