File tree Expand file tree Collapse file tree 2 files changed +9
-2
lines changed
Expand file tree Collapse file tree 2 files changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -114,7 +114,10 @@ gc: 'gc' StringLit;
114114prefix : ' prefix' typeConst;
115115prologue : ' prologue' typeConst;
116116personality : ' personality' typeConst;
117- returnAttribute : returnAttr | dereferenceable;
117+ returnAttribute :
118+ returnAttr
119+ | dereferenceable
120+ | align;
118121funcBody : ' {' basicBlock+ useListOrder* ' }' ;
119122basicBlock : LabelIdent? instruction* terminator;
120123instruction : // Instructions producing values.
@@ -1433,4 +1436,4 @@ ChecksumKind: 'CSK_' (AsciiLetter | DecimalDigit | '_')*;
14331436DwarfVirtuality:
14341437 ' DW_VIRTUALITY_ ' (AsciiLetter | DecimalDigit | ' _ ' )*;
14351438DwarfMacinfo: ' DW_MACINFO_ ' (AsciiLetter | DecimalDigit | ' _ ' )*;
1436- DwarfOp: ' DW_OP_ ' (AsciiLetter | DecimalDigit | ' _ ' )*;
1439+ DwarfOp: ' DW_OP_ ' (AsciiLetter | DecimalDigit | ' _ ' )*;
Original file line number Diff line number Diff line change 1+ define void @main () {
2+ %0 = call nonnull align 8 i32 @f ()
3+ ret void
4+ }
You can’t perform that action at this time.
0 commit comments