mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-10 04:33:40 +00:00
remove a really wrong parenthesis.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@92277 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
42991eeb64
commit
c17300f3c5
@ -496,7 +496,7 @@ bool LLParser::ParseMDNode(MDNode *&Result) {
|
|||||||
|
|
||||||
// FIXME: This is not unique enough!
|
// FIXME: This is not unique enough!
|
||||||
std::string FwdRefName = "llvm.mdnode.fwdref." + utostr(MID);
|
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);
|
MDNode *FwdNode = MDNode::get(Context, &V, 1);
|
||||||
ForwardRefMDNodes[MID] = std::make_pair(FwdNode, Lex.getLoc());
|
ForwardRefMDNodes[MID] = std::make_pair(FwdNode, Lex.getLoc());
|
||||||
Result = FwdNode;
|
Result = FwdNode;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user