fix parsing .comm directives on systems which do not represent alignments
authorChris Lattner <sabre@nondot.org>
Tue, 19 Jan 2010 06:22:22 +0000 (06:22 +0000)
committerChris Lattner <sabre@nondot.org>
Tue, 19 Jan 2010 06:22:22 +0000 (06:22 +0000)
as a power of 2.  This fixes MC/AsmParser/directive_comm.s

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@93867 91177308-0d34-0410-b5e6-96231b3b80d8

tools/llvm-mc/AsmLexer.h
tools/llvm-mc/AsmParser.cpp

index ce292f66b127be5b2b051c2a10a743acb3499d60..c0b32232abb7aba18be906985f702699580d70fb 100644 (file)
@@ -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);
index d4af4bd0df6e119046984f6f6b7c1e4ade5548a7..0e7c3443d5a2f64b2d90ce10cc2b02c9df967329 100644 (file)
@@ -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))