Skip to content

Commit

Permalink
Merge pull request solana-labs#16 from badboy/remove-old-lint
Browse files Browse the repository at this point in the history
src/jit.rs: remove no-longer-existing lint
  • Loading branch information
qmonnet authored May 2, 2017
2 parents 43f2a1a + 79f092d commit f7c31d1
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/jit.rs
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,6 @@ fn emit_load_imm(jit: &mut JitMemory, dst: u8, imm: i64) {
// Store register src to [dst + offset]
#[inline]
fn emit_store(jit: &mut JitMemory, size: OperandSize, src: u8, dst: u8, offset: i32) {
#[allow(single_match)]
match size {
OperandSize::S16 => emit1(jit, 0x66), // 16-bit override
_ => {},
Expand Down Expand Up @@ -327,7 +326,6 @@ fn emit_store(jit: &mut JitMemory, size: OperandSize, src: u8, dst: u8, offset:
// Store immediate to [dst + offset]
#[inline]
fn emit_store_imm32(jit: &mut JitMemory, size: OperandSize, dst: u8, offset: i32, imm: i32) {
#[allow(single_match)]
match size {
OperandSize::S16 => emit1(jit, 0x66), // 16-bit override
_ => {},
Expand Down

0 comments on commit f7c31d1

Please sign in to comment.