1 files changed, 7 insertions(+), 3 deletions(-)
lib/std/builtin/assembly.zig+7-3
| ... | ... | @@ -1004,13 +1004,17 @@ pub const Clobbers = switch (@import("builtin").cpu.arch) { |
| 1004 | 1004 | /// addresses other than those derived from input pointer provenance. |
| 1005 | 1005 | memory: bool = false, |
| 1006 | 1006 | |
| 1007 | | xcc: bool = false, |
| 1008 | | |
| 1009 | 1007 | psr: bool = false, |
| 1010 | | ccr: bool = false, |
| 1011 | 1008 | gsr: bool = false, |
| 1012 | 1009 | y: bool = false, |
| 1013 | 1010 | |
| 1011 | /// asr2; v9+ |
| 1012 | ccr: bool = false, |
| 1013 | /// Lower bits of `ccr`. |
| 1014 | icc: bool = false, |
| 1015 | /// Upper bits of `ccr`. |
| 1016 | xcc: bool = false, |
| 1017 | |
| 1014 | 1018 | g1: bool = false, |
| 1015 | 1019 | g2: bool = false, |
| 1016 | 1020 | g3: bool = false, |