2020-10-23 01:39:25 -05:00
|
|
|
error: empty `loop {}` wastes CPU cycles
|
2022-07-28 02:57:01 -05:00
|
|
|
--> $DIR/empty_loop_no_std.rs:13:5
|
2020-10-23 01:39:25 -05:00
|
|
|
|
|
|
|
|
LL | loop {}
|
|
|
|
| ^^^^^^^
|
|
|
|
|
|
|
|
|
= note: `-D clippy::empty-loop` implied by `-D warnings`
|
2020-11-08 05:40:41 -06:00
|
|
|
= help: you should either use `panic!()` or add a call pausing or sleeping the thread to the loop body
|
2020-10-23 01:39:25 -05:00
|
|
|
|
|
|
|
error: empty `loop {}` wastes CPU cycles
|
2022-07-28 02:57:01 -05:00
|
|
|
--> $DIR/empty_loop_no_std.rs:25:5
|
2020-10-23 01:39:25 -05:00
|
|
|
|
|
|
|
|
LL | loop {}
|
|
|
|
| ^^^^^^^
|
|
|
|
|
|
2020-11-08 05:40:41 -06:00
|
|
|
= help: you should either use `panic!()` or add a call pausing or sleeping the thread to the loop body
|
2020-10-23 01:39:25 -05:00
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|