1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-01-31 12:41:49 +01:00

Fix comment. Patch by Stephen Lin.

llvm-svn: 179780
This commit is contained in:
Bill Wendling 2013-04-18 18:30:16 +00:00
parent c44b97c596
commit 3eb45127a1

View File

@ -878,8 +878,9 @@ bool LLParser::ParseFnAttributeValuePairs(AttrBuilder &B,
// Target-independent attributes:
case lltok::kw_align: {
// As a hack, we allow "align 2" on functions as a synonym for "alignstack
// 2".
// As a hack, we allow function alignment to be initially parsed as an
// attribute on a function declaration/definition or added to an attribute
// group and later moved to the alignment field.
unsigned Alignment;
if (inAttrGrp) {
Lex.Lex();