diff options
author | Chris Lattner <sabre@nondot.org> | 2009-12-30 04:15:23 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-12-30 04:15:23 +0000 |
commit | 4a72efc0ad18c1b9c98bb2f0cb881a39a7010b53 (patch) | |
tree | ca4c7969c447f7c144285c12c622d7f2269de206 /lib/AsmParser/LLParser.cpp | |
parent | 860775c2b05a0d0ecadcbf2e9283912061fb5235 (diff) |
rename ParseMDNode -> ParseMDNodeID, since it parses !42, not !{... } as you'd expect.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@92291 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/AsmParser/LLParser.cpp')
-rw-r--r-- | lib/AsmParser/LLParser.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/AsmParser/LLParser.cpp b/lib/AsmParser/LLParser.cpp index 1ef4209dae..83a3890e13 100644 --- a/lib/AsmParser/LLParser.cpp +++ b/lib/AsmParser/LLParser.cpp @@ -472,7 +472,7 @@ bool LLParser::ParseMDString(MDString *&Result) { // MDNode: // ::= '!' MDNodeNumber -bool LLParser::ParseMDNode(MDNode *&Result) { +bool LLParser::ParseMDNodeID(MDNode *&Result) { // !{ ..., !42, ... } unsigned MID = 0; if (ParseUInt32(MID)) return true; @@ -522,7 +522,7 @@ bool LLParser::ParseNamedMetadata() { // FIXME: This rejects MDStrings. Are they legal in an named MDNode or not? MDNode *N = 0; - if (ParseMDNode(N)) return true; + if (ParseMDNodeID(N)) return true; Elts.push_back(N); } while (EatIfPresent(lltok::comma)); @@ -1077,7 +1077,7 @@ bool LLParser::ParseOptionalCustomMetadata() { Lex.Lex(); MDNode *Node; - if (ParseMDNode(Node)) return true; + if (ParseMDNodeID(Node)) return true; unsigned MDK = M->getMDKindID(Name.c_str()); MDsOnInst.push_back(std::make_pair(MDK, Node)); @@ -1906,7 +1906,7 @@ bool LLParser::ParseValID(ValID &ID) { // Standalone metadata reference // !{ ..., !42, ... } if (Lex.getKind() == lltok::APSInt) { - if (ParseMDNode(ID.MDNodeVal)) return true; + if (ParseMDNodeID(ID.MDNodeVal)) return true; ID.Kind = ValID::t_MDNode; return false; } @@ -3810,7 +3810,7 @@ bool LLParser::ParseMDNodeVector(SmallVectorImpl<Value*> &Elts) { if (Lex.getKind() == lltok::Metadata) { Lex.Lex(); MDNode *Node = 0; - if (!ParseMDNode(Node)) + if (!ParseMDNodeID(Node)) V = Node; else { MDString *MDS = 0; |