Skip to content

Commit

Permalink
fix(nxor): fix nxor and by extension xor;
Browse files Browse the repository at this point in the history
  • Loading branch information
5-pebbles committed Sep 10, 2024
1 parent 18e8cfa commit 46fe4eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/compilation/generator.rs
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ impl IrGenerator {
self.mov(free_register, Either::Register(register))
.nor(free_register, either.clone())
.nor(register, Either::Register(free_register))
.nor(register, either)
.nor(free_register, either)
.nor(register, Either::Register(free_register))
}

Expand Down

0 comments on commit 46fe4eb

Please sign in to comment.