Displaying 1 result from an estimated 1 matches for "hasalignmentattr".
2013 Apr 08
0
[LLVMdev] Inaccurate comment in LLParser: "align 2" is a synonym for "alignstack 2"?
...;.
in "lib/AsmParser/LLParser.cpp" appears inaccurate, the "alignment" is
later parsed as the alignment of the function itself, both when
directly placed on the function:
02975 // If the alignment was parsed as an attribute, move to the
alignment field.
02976 if (FuncAttrs.hasAlignmentAttr()) {
02977 Alignment = FuncAttrs.getAlignment();
02978 FuncAttrs.removeAttribute(Attribute::Alignment);
02979 }
and through an attribute group:
00088 // If the alignment was parsed as an attribute, move to
the alignment
00089 // field.
00090 if (FnAttrs.hasAlignmentAtt...