diff options
author | Chris Lattner <sabre@nondot.org> | 2009-12-30 06:00:36 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-12-30 06:00:36 +0000 |
commit | 1f66a30b946aa03cd89c2f0f7418bf64fe540508 (patch) | |
tree | 5a0324d1e59137ee29ed07bef3e298f11d45f582 /lib/AsmParser/LLParser.cpp | |
parent | 88a7139df1a61c4ec02baa22670bf0ba14115958 (diff) | |
download | external_llvm-1f66a30b946aa03cd89c2f0f7418bf64fe540508.zip external_llvm-1f66a30b946aa03cd89c2f0f7418bf64fe540508.tar.gz external_llvm-1f66a30b946aa03cd89c2f0f7418bf64fe540508.tar.bz2 |
remove some fixme's
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@92304 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/AsmParser/LLParser.cpp')
-rw-r--r-- | lib/AsmParser/LLParser.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/AsmParser/LLParser.cpp b/lib/AsmParser/LLParser.cpp index c6eeb56..15a9832 100644 --- a/lib/AsmParser/LLParser.cpp +++ b/lib/AsmParser/LLParser.cpp @@ -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) || |