Index: lib/MC/MCParser/AsmParser.cpp =================================================================== --- lib/MC/MCParser/AsmParser.cpp +++ lib/MC/MCParser/AsmParser.cpp @@ -700,7 +700,8 @@ // if it's a end of statement with a comment in it if (getTok().is(AsmToken::EndOfStatement)) { // if this is a line comment output it. - if (getTok().getString().front() != '\n' && + if (!getTok().getString().empty() && + getTok().getString().front() != '\n' && getTok().getString().front() != '\r' && MAI.preserveAsmComments()) Out.addExplicitComment(Twine(getTok().getString())); } @@ -1483,7 +1484,8 @@ Lex(); if (Lexer.is(AsmToken::EndOfStatement)) { // if this is a line comment we can drop it safely - if (getTok().getString().front() == '\r' || + if (getTok().getString().empty() || + getTok().getString().front() == '\r' || getTok().getString().front() == '\n') Out.AddBlankLine(); Lex(); Index: test/MC/AsmParser/empty-comment.s =================================================================== --- /dev/null +++ test/MC/AsmParser/empty-comment.s @@ -0,0 +1,4 @@ + #RUN: llvm-mc -preserve-comments -n -triple i386-linux-gnu < %s > %t + .text +foo: + nop # \ No newline at end of file