diff options
Diffstat (limited to 'lib/AsmParser/LLLexer.cpp')
-rw-r--r-- | lib/AsmParser/LLLexer.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/AsmParser/LLLexer.cpp b/lib/AsmParser/LLLexer.cpp index 6d660111ac..cb7660596a 100644 --- a/lib/AsmParser/LLLexer.cpp +++ b/lib/AsmParser/LLLexer.cpp @@ -603,7 +603,8 @@ lltok::Kind LLLexer::LexIdentifier() { 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; } |