Skip to content

Commit

Permalink
Add missing newline from #7
Browse files Browse the repository at this point in the history
  • Loading branch information
abrown committed Dec 31, 2024
1 parent 1be4609 commit c7b40fb
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions cranelift/assembler/meta/src/instructions/or.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
use crate::dsl::{fmt, inst, r, rex, rw, sxl, sxq, Features::*, Inst, LegacyPrefixes::*, Location::*};
use crate::dsl::{
fmt, inst, r, rex, rw, sxl, sxq, Features::*, Inst, LegacyPrefixes::*, Location::*,
};

pub fn list() -> Vec<Inst> {
vec![
Expand All @@ -22,4 +24,4 @@ pub fn list() -> Vec<Inst> {
inst("orl", fmt("RM", [rw(r32), r(rm32)]), rex(0x0B).r(), None),
inst("orq", fmt("RM", [rw(r64), r(rm64)]), rex(0x0B).w().r(), None),
]
}
}

0 comments on commit c7b40fb

Please sign in to comment.