#include "llvm/MC/MCStreamer.h"
#include "llvm/MC/MCSymbol.h"
#include "llvm/MC/MCDwarf.h"
-#include "llvm/Support/CommandLine.h"
#include "llvm/Support/MemoryBuffer.h"
#include "llvm/Support/SourceMgr.h"
#include "llvm/Support/raw_ostream.h"
#include <vector>
using namespace llvm;
-static cl::opt<bool>
-FatalAssemblerWarnings("fatal-assembler-warnings",
- cl::desc("Consider warnings as error"));
-
namespace {
/// \brief Helper class for tracking macro definitions.
virtual MCContext &getContext() { return Ctx; }
virtual MCStreamer &getStreamer() { return Out; }
- virtual bool Warning(SMLoc L, const Twine &Meg);
+ virtual void Warning(SMLoc L, const Twine &Meg);
virtual bool Error(SMLoc L, const Twine &Msg);
const AsmToken &Lex();
"note");
}
-bool AsmParser::Warning(SMLoc L, const Twine &Msg) {
- if (FatalAssemblerWarnings)
- return Error(L, Msg);
+void AsmParser::Warning(SMLoc L, const Twine &Msg) {
PrintMessage(L, Msg, "warning");
PrintMacroInstantiations();
- return false;
}
bool AsmParser::Error(SMLoc L, const Twine &Msg) {
if (!getTargetParser().ParseDirective(ID))
return false;
- bool retval = Warning(IDLoc, "ignoring directive for now");
+ Warning(IDLoc, "ignoring directive for now");
EatToEndOfStatement();
- return retval;
+ return false;
}
CheckForValidSection();
// FIXME: If/when .dump and .load are implemented they will be done in the
// the assembly parser and not have any need for an MCStreamer API.
if (IsDump)
- return Warning(IDLoc, "ignoring directive .dump for now");
+ Warning(IDLoc, "ignoring directive .dump for now");
else
- return Warning(IDLoc, "ignoring directive .load for now");
+ Warning(IDLoc, "ignoring directive .load for now");
+
+ return false;
}
/// ParseDirectiveLsym