Skip to content

Commit 8c07368

Browse files
committed
remove debug messages
1 parent ba188b1 commit 8c07368

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
@@ -28,7 +28,6 @@ pub fn mb() {
2828
/// Search the most significant bit
2929
#[inline(always)]
3030
pub fn msb(value: u64) -> Option<u64> {
31-
println!("value {}", value);
3231
if value > 0 {
3332
let ret: u64;
3433
unsafe {
@@ -38,7 +37,6 @@ pub fn msb(value: u64) -> Option<u64> {
3837
options(nomem, nostack)
3938
);
4039
}
41-
println!("value {} {}", value, ret);
4240
Some(ret)
4341
} else {
4442
None

0 commit comments

Comments
 (0)