mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-06 09:44:39 +00:00
Eat the alignment keyword if we're in an attribute group.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@174846 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
0f715c26bd
commit
3f87d23a3d
@ -878,6 +878,7 @@ bool LLParser::ParseFnAttributeValuePairs(AttrBuilder &B,
|
||||
// 2".
|
||||
unsigned Alignment;
|
||||
if (inAttrGrp) {
|
||||
Lex.Lex();
|
||||
if (ParseToken(lltok::equal, "expected '=' here") ||
|
||||
ParseUInt32(Alignment))
|
||||
return true;
|
||||
@ -891,6 +892,7 @@ bool LLParser::ParseFnAttributeValuePairs(AttrBuilder &B,
|
||||
case lltok::kw_alignstack: {
|
||||
unsigned Alignment;
|
||||
if (inAttrGrp) {
|
||||
Lex.Lex();
|
||||
if (ParseToken(lltok::equal, "expected '=' here") ||
|
||||
ParseUInt32(Alignment))
|
||||
return true;
|
||||
|
Loading…
x
Reference in New Issue
Block a user