add some fixme's


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@84408 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/AsmParser/LLLexer.cpp b/lib/AsmParser/LLLexer.cpp
index 6d66011..cb76605 100644
--- a/lib/AsmParser/LLLexer.cpp
+++ b/lib/AsmParser/LLLexer.cpp
@@ -603,7 +603,8 @@
     if (JustWhitespaceNewLine(CurPtr))
       return lltok::kw_zeroext;
   } else if (Len == 6 && !memcmp(StartChar, "malloc", 6)) {
-    // Autoupgrade malloc instruction
+    // FIXME: Remove in LLVM 3.0.
+    // Autoupgrade malloc instruction.
     return lltok::kw_malloc;
   }
 
diff --git a/lib/AsmParser/LLParser.cpp b/lib/AsmParser/LLParser.cpp
index 749ce93..da8f4ea 100644
--- a/lib/AsmParser/LLParser.cpp
+++ b/lib/AsmParser/LLParser.cpp
@@ -70,6 +70,7 @@
 /// module.
 bool LLParser::ValidateEndOfModule() {
   // Update auto-upgraded malloc calls from "autoupgrade_malloc" to "malloc".
+  // FIXME: Remove in LLVM 3.0.
   if (MallocF) {
     MallocF->setName("malloc");
     // If setName() does not set the name to "malloc", then there is already a