remove some fixme's
authorChris Lattner <sabre@nondot.org>
Wed, 30 Dec 2009 06:00:36 +0000 (06:00 +0000)
committerChris Lattner <sabre@nondot.org>
Wed, 30 Dec 2009 06:00:36 +0000 (06:00 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@92304 91177308-0d34-0410-b5e6-96231b3b80d8

lib/AsmParser/LLParser.cpp

index c6eeb56e14c06c82486d45b8109af1f3cb775d65..15a9832731f21ab55db982fe62536fcb40119bbb 100644 (file)
@@ -538,7 +538,6 @@ bool LLParser::ParseStandaloneMetadata() {
   LocTy TyLoc;
   PATypeHolder Ty(Type::getVoidTy(Context));
   SmallVector<Value *, 16> Elts;
-  // FIXME: This doesn't make sense here.  Pull braced MD stuff parsing out!
   if (ParseUInt32(MetadataID) ||
       ParseToken(lltok::equal, "expected '=' here") ||
       ParseType(Ty, TyLoc) ||
@@ -1907,7 +1906,6 @@ bool LLParser::ParseValID(ValID &ID) {
   case lltok::exclaim:   // !{...} MDNode, !"foo" MDString
     Lex.Lex();
     
-    // FIXME: This doesn't belong here.
     if (EatIfPresent(lltok::lbrace)) {
       SmallVector<Value*, 16> Elts;
       if (ParseMDNodeVector(Elts) ||