Skip to content

Commit c5e2225

Browse files
committed
remove debug messages
1 parent 6e09f6f commit c5e2225

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/arch/x86_64/processor.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ pub fn mb() {
1515
/// Search the most significant bit
1616
#[inline(always)]
1717
pub fn msb(value: u64) -> Option<u64> {
18-
println!("value {}", value);
1918
if value > 0 {
2019
let ret: u64;
2120
unsafe {
@@ -25,7 +24,6 @@ pub fn msb(value: u64) -> Option<u64> {
2524
options(nomem, nostack)
2625
);
2726
}
28-
println!("value {} {}", value, ret);
2927
Some(ret)
3028
} else {
3129
None

0 commit comments

Comments
 (0)