mirror of
https://github.com/ziglang/zig.git
synced 2025-12-29 01:23:17 +00:00
stage2 ARM: add missing parameters for bic, bics
This commit is contained in:
parent
50c6b6cc66
commit
435d8ae536
@ -886,11 +886,11 @@ pub const Instruction = union(enum) {
|
||||
return dataProcessing(cond, .mov, 1, rd, .r0, op2);
|
||||
}
|
||||
|
||||
pub fn bic(cond: Condition, rd: Register, op2: Operand) Instruction {
|
||||
pub fn bic(cond: Condition, rd: Register, rn: Register, op2: Operand) Instruction {
|
||||
return dataProcessing(cond, .bic, 0, rd, rn, op2);
|
||||
}
|
||||
|
||||
pub fn bics(cond: Condition, rd: Register, op2: Operand) Instruction {
|
||||
pub fn bics(cond: Condition, rd: Register, rn: Register, op2: Operand) Instruction {
|
||||
return dataProcessing(cond, .bic, 1, rd, rn, op2);
|
||||
}
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user