diff options
author | Chris Lattner <sabre@nondot.org> | 2010-01-19 06:22:22 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2010-01-19 06:22:22 +0000 |
commit | ab9cd3e132a86f99c8784c6025c6f55bb5cf2612 (patch) | |
tree | d6117bdb1899a8b8d192169b0fb4096e6c8b4c66 /llvm | |
parent | 795bfb72079709bf6913dec1cf5c1c456c5d1a02 (diff) | |
download | bcm5719-llvm-ab9cd3e132a86f99c8784c6025c6f55bb5cf2612.tar.gz bcm5719-llvm-ab9cd3e132a86f99c8784c6025c6f55bb5cf2612.zip |
fix parsing .comm directives on systems which do not represent alignments
as a power of 2. This fixes MC/AsmParser/directive_comm.s
llvm-svn: 93867
Diffstat (limited to 'llvm')
-rw-r--r-- | llvm/tools/llvm-mc/AsmLexer.h | 4 | ||||
-rw-r--r-- | llvm/tools/llvm-mc/AsmParser.cpp | 7 |
2 files changed, 10 insertions, 1 deletions
diff --git a/llvm/tools/llvm-mc/AsmLexer.h b/llvm/tools/llvm-mc/AsmLexer.h index ce292f66b12..c0b32232abb 100644 --- a/llvm/tools/llvm-mc/AsmLexer.h +++ b/llvm/tools/llvm-mc/AsmLexer.h @@ -62,7 +62,9 @@ public: bool EnterIncludeFile(const std::string &Filename); void PrintMessage(SMLoc Loc, const std::string &Msg, const char *Type) const; - + + const MCAsmInfo &getMAI() const { return MAI; } + private: int getNextChar(); AsmToken ReturnError(const char *Loc, const std::string &Msg); diff --git a/llvm/tools/llvm-mc/AsmParser.cpp b/llvm/tools/llvm-mc/AsmParser.cpp index d4af4bd0df6..0e7c3443d5a 100644 --- a/llvm/tools/llvm-mc/AsmParser.cpp +++ b/llvm/tools/llvm-mc/AsmParser.cpp @@ -1278,6 +1278,13 @@ bool AsmParser::ParseDirectiveComm(bool IsLocal) { Pow2AlignmentLoc = Lexer.getLoc(); if (ParseAbsoluteExpression(Pow2Alignment)) return true; + + // If this target takes alignments in bytes (not log) validate and convert. + if (Lexer.getMAI().getAlignmentIsInBytes()) { + if (!isPowerOf2_64(Pow2Alignment)) + return Error(Pow2AlignmentLoc, "alignment must be a power of 2"); + Pow2Alignment = Log2_64(Pow2Alignment); + } } if (Lexer.isNot(AsmToken::EndOfStatement)) |