| ... | @@ -698,6 +698,7 @@ pub const Target = struct { | ... | @@ -698,6 +698,7 @@ pub const Target = struct { |
| 698 | .bpfeb => ._BPF, | 698 | .bpfeb => ._BPF, |
| 699 | .sparcv9 => ._SPARCV9, | 699 | .sparcv9 => ._SPARCV9, |
| 700 | .s390x => ._S390, | 700 | .s390x => ._S390, |
| | 701 | .ve => ._NONE, |
| 701 | }; | 702 | }; |
| 702 | } | 703 | } |
| 703 | | 704 | |
| ... | @@ -739,6 +740,7 @@ pub const Target = struct { | ... | @@ -739,6 +740,7 @@ pub const Target = struct { |
| 739 | .renderscript32, | 740 | .renderscript32, |
| 740 | .renderscript64, | 741 | .renderscript64, |
| 741 | .shave, | 742 | .shave, |
| | 743 | .ve, |
| 742 | => .Little, | 744 | => .Little, |
| 743 | | 745 | |
| 744 | .arc, | 746 | .arc, |
| ... | @@ -1317,3 +1319,7 @@ pub const Target = struct { | ... | @@ -1317,3 +1319,7 @@ pub const Target = struct { |
| 1317 | } | 1319 | } |
| 1318 | } | 1320 | } |
| 1319 | }; | 1321 | }; |
| | 1322 | |
| | 1323 | test "" { |
| | 1324 | std.meta.refAllDecls(Target.Cpu.Arch); |
| | 1325 | } |