rename ParseMDNode -> ParseMDNodeID, since it parses !42, not !{... } as you'd expect.
authorChris Lattner <sabre@nondot.org>
Wed, 30 Dec 2009 04:15:23 +0000 (04:15 +0000)
committerChris Lattner <sabre@nondot.org>
Wed, 30 Dec 2009 04:15:23 +0000 (04:15 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@92291 91177308-0d34-0410-b5e6-96231b3b80d8

lib/AsmParser/LLParser.cpp
lib/AsmParser/LLParser.h

index 1ef4209dae3ae53432d04435b98e5ad92a5a50af..83a3890e13a345f5f2ae3f03db21e007149a3012 100644 (file)
@@ -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;
index 31707287913f82e2acd77a25870aa9d4bf134267..e8eb3023b987a5dde1aec673513da12512c06bf0 100644 (file)
@@ -196,7 +196,7 @@ namespace llvm {
     bool ParseStandaloneMetadata();
     bool ParseNamedMetadata();
     bool ParseMDString(MDString *&Result);
-    bool ParseMDNode(MDNode *&Result);
+    bool ParseMDNodeID(MDNode *&Result);
 
     // Type Parsing.
     bool ParseType(PATypeHolder &Result, bool AllowVoid = false);