mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-06 05:44:20 +00:00
fix sparc ccr regs
This commit is contained in:
parent
5aa50bcbff
commit
8a478b4e9e
1 changed files with 7 additions and 3 deletions
|
|
@ -1004,13 +1004,17 @@ pub const Clobbers = switch (@import("builtin").cpu.arch) {
|
|||
/// addresses other than those derived from input pointer provenance.
|
||||
memory: bool = false,
|
||||
|
||||
xcc: bool = false,
|
||||
|
||||
psr: bool = false,
|
||||
ccr: bool = false,
|
||||
gsr: bool = false,
|
||||
y: bool = false,
|
||||
|
||||
/// asr2; v9+
|
||||
ccr: bool = false,
|
||||
/// Lower bits of `ccr`.
|
||||
icc: bool = false,
|
||||
/// Upper bits of `ccr`.
|
||||
xcc: bool = false,
|
||||
|
||||
g1: bool = false,
|
||||
g2: bool = false,
|
||||
g3: bool = false,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue