diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2021-08-31 18:44:15 -0700 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2021-08-31 18:44:15 -0700 |
| commit | 7efca2e6f51458de8e70a6f5cbbc292026321681 (patch) | |
| tree | 67595e90e73b9cb2637848d1fdd950f3463f2c4e /src/codegen/arm.zig | |
| parent | db4fea6689eb34959028cad3b63de45da65683d3 (diff) | |
| parent | 75263e160e477a210a3d2a007b6d66c63b85001f (diff) | |
| download | zig-7efca2e6f51458de8e70a6f5cbbc292026321681.tar.gz zig-7efca2e6f51458de8e70a6f5cbbc292026321681.zip | |
Merge remote-tracking branch 'origin/master' into llvm13
Diffstat (limited to 'src/codegen/arm.zig')
| -rw-r--r-- | src/codegen/arm.zig | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/codegen/arm.zig b/src/codegen/arm.zig index 3743afd50f..42e3e52fac 100644 --- a/src/codegen/arm.zig +++ b/src/codegen/arm.zig @@ -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); } |
