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:
David Brown 2019-12-03 15:06:52 -07:00 committed by David Brown
parent d37d877603
commit a0cb24b84e
1 changed files with 0 additions and 2 deletions

View File

@ -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]
}