| ... | @@ -383,7 +383,7 @@ const attributes = struct { | ... | @@ -383,7 +383,7 @@ const attributes = struct { |
| 383 | write_only, | 383 | write_only, |
| 384 | none, | 384 | none, |
| 385 | | 385 | |
| 386 | const opts = struct { | 386 | pub const opts = struct { |
| 387 | const enum_kind = .identifier; | 387 | const enum_kind = .identifier; |
| 388 | }; | 388 | }; |
| 389 | }, | 389 | }, |
| ... | @@ -454,7 +454,7 @@ const attributes = struct { | ... | @@ -454,7 +454,7 @@ const attributes = struct { |
| 454 | strftime, | 454 | strftime, |
| 455 | strfmon, | 455 | strfmon, |
| 456 | | 456 | |
| 457 | const opts = struct { | 457 | pub const opts = struct { |
| 458 | const enum_kind = .identifier; | 458 | const enum_kind = .identifier; |
| 459 | }; | 459 | }; |
| 460 | }, | 460 | }, |
| ... | @@ -500,7 +500,7 @@ const attributes = struct { | ... | @@ -500,7 +500,7 @@ const attributes = struct { |
| 500 | BND32, BND64, | 500 | BND32, BND64, |
| 501 | // zig fmt: on | 501 | // zig fmt: on |
| 502 | | 502 | |
| 503 | const opts = struct { | 503 | pub const opts = struct { |
| 504 | const enum_kind = .identifier; | 504 | const enum_kind = .identifier; |
| 505 | }; | 505 | }; |
| 506 | }, | 506 | }, |
| ... | @@ -560,7 +560,7 @@ const attributes = struct { | ... | @@ -560,7 +560,7 @@ const attributes = struct { |
| 560 | @"little-endian", | 560 | @"little-endian", |
| 561 | @"big-endian", | 561 | @"big-endian", |
| 562 | | 562 | |
| 563 | const opts = struct { | 563 | pub const opts = struct { |
| 564 | const enum_kind = .string; | 564 | const enum_kind = .string; |
| 565 | }; | 565 | }; |
| 566 | }, | 566 | }, |
| ... | @@ -577,7 +577,7 @@ const attributes = struct { | ... | @@ -577,7 +577,7 @@ const attributes = struct { |
| 577 | notinbranch, | 577 | notinbranch, |
| 578 | inbranch, | 578 | inbranch, |
| 579 | | 579 | |
| 580 | const opts = struct { | 580 | pub const opts = struct { |
| 581 | const enum_kind = .string; | 581 | const enum_kind = .string; |
| 582 | }; | 582 | }; |
| 583 | } = null, | 583 | } = null, |
| ... | @@ -587,7 +587,7 @@ const attributes = struct { | ... | @@ -587,7 +587,7 @@ const attributes = struct { |
| 587 | arg: enum { | 587 | arg: enum { |
| 588 | nomitigation, | 588 | nomitigation, |
| 589 | | 589 | |
| 590 | const opts = struct { | 590 | pub const opts = struct { |
| 591 | const enum_kind = .identifier; | 591 | const enum_kind = .identifier; |
| 592 | }; | 592 | }; |
| 593 | }, | 593 | }, |
| ... | @@ -613,7 +613,7 @@ const attributes = struct { | ... | @@ -613,7 +613,7 @@ const attributes = struct { |
| 613 | @"initial-exec", | 613 | @"initial-exec", |
| 614 | @"local-exec", | 614 | @"local-exec", |
| 615 | | 615 | |
| 616 | const opts = struct { | 616 | pub const opts = struct { |
| 617 | const enum_kind = .string; | 617 | const enum_kind = .string; |
| 618 | }; | 618 | }; |
| 619 | }, | 619 | }, |
| ... | @@ -642,7 +642,7 @@ const attributes = struct { | ... | @@ -642,7 +642,7 @@ const attributes = struct { |
| 642 | internal, | 642 | internal, |
| 643 | protected, | 643 | protected, |
| 644 | | 644 | |
| 645 | const opts = struct { | 645 | pub const opts = struct { |
| 646 | const enum_kind = .string; | 646 | const enum_kind = .string; |
| 647 | }; | 647 | }; |
| 648 | }, | 648 | }, |
| ... | @@ -671,7 +671,7 @@ const attributes = struct { | ... | @@ -671,7 +671,7 @@ const attributes = struct { |
| 671 | @"all-arg", | 671 | @"all-arg", |
| 672 | @"all-gpr-arg", | 672 | @"all-gpr-arg", |
| 673 | | 673 | |
| 674 | const opts = struct { | 674 | pub const opts = struct { |
| 675 | const enum_kind = .string; | 675 | const enum_kind = .string; |
| 676 | }; | 676 | }; |
| 677 | }, | 677 | }, |
| ... | @@ -689,7 +689,7 @@ const attributes = struct { | ... | @@ -689,7 +689,7 @@ const attributes = struct { |
| 689 | nullable_result, | 689 | nullable_result, |
| 690 | unspecified, | 690 | unspecified, |
| 691 | | 691 | |
| 692 | const opts = struct { | 692 | pub const opts = struct { |
| 693 | const enum_kind = .identifier; | 693 | const enum_kind = .identifier; |
| 694 | }; | 694 | }; |
| 695 | }, | 695 | }, |
| ... | @@ -700,7 +700,7 @@ const attributes = struct { | ... | @@ -700,7 +700,7 @@ const attributes = struct { |
| 700 | aapcs, | 700 | aapcs, |
| 701 | @"aapcs-vfp", | 701 | @"aapcs-vfp", |
| 702 | | 702 | |
| 703 | const opts = struct { | 703 | pub const opts = struct { |
| 704 | const enum_kind = .string; | 704 | const enum_kind = .string; |
| 705 | }; | 705 | }; |
| 706 | }, | 706 | }, |