Home | History | Annotate | Download | only in MCParser

Lines Matching defs:Size

690 ///  ::= .tbss identifier, size, align
704 int64_t Size;
706 if (getParser().parseAbsoluteExpression(Size))
723 if (Size < 0)
724 return Error(SizeLoc, "invalid '.tbss' directive size, can't be less than"
739 Sym, Size, 1 << Pow2Alignment);
787 int64_t Size;
789 if (getParser().parseAbsoluteExpression(Size))
806 if (Size < 0)
807 return Error(SizeLoc, "invalid '.zerofill' directive size, can't be less "
820 // Create the zerofill Symbol with Size and Pow2Alignment
826 Sym, Size, 1 << Pow2Alignment);