sim: Remove some extraneous print
These were added during development to make sure conditional compilation was working. Now, they just cause excess messages to be printed. Remove them. Signed-off-by: David Brown <david.brown@linaro.org>
This commit is contained in:
parent
d37d877603
commit
a0cb24b84e
|
@ -1545,12 +1545,10 @@ pub fn show_sizes() {
|
|||
|
||||
#[cfg(not(feature = "large-write"))]
|
||||
fn test_alignments() -> &'static [usize] {
|
||||
println!("Not large write");
|
||||
&[1, 2, 4, 8]
|
||||
}
|
||||
|
||||
#[cfg(feature = "large-write")]
|
||||
fn test_alignments() -> &'static [usize] {
|
||||
println!("Large write test: {:?}", cfg!(feature = "large-write"));
|
||||
&[1, 2, 4, 8, 128, 512]
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue