-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Auto merge of #6162 - josephlr:empty-loop-no-std, r=flip1995
Enable empty_loop for no_std crates. Fixes #6161 This change: - Makes it so the `empty_loop` lint will fire for `no_std` crates, but with a `no_std`-specific message (mentioning [`spin_loop_hint`](https://doc.rust-lang.org/core/sync/atomic/fn..html)). - Updates the `std` message to also mention [`std::thread::yield_now`](https://doc.rust-lang.org/std/thread/fn.yield_now.html). - Updates the docs to also mention the [LLVM infinite loop bug](rust-lang/rust#28728) - Updates the tests/stderr files to test this change. changelog: Update `empty_loop` lint to work with `no_std` crates
- Loading branch information
Showing
7 changed files
with
82 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,27 @@ | ||
error: empty `loop {}` detected. You may want to either use `panic!()` or add `std::thread::sleep(..);` to the loop body. | ||
error: empty `loop {}` is currently miscompiled and wastes CPU cycles | ||
--> $DIR/empty_loop.rs:9:5 | ||
| | ||
LL | loop {} | ||
| ^^^^^^^ | ||
| | ||
= note: `-D clippy::empty-loop` implied by `-D warnings` | ||
= help: You should either use `panic!()` or add `std::thread::sleep(..);` to the loop body. | ||
|
||
error: empty `loop {}` detected. You may want to either use `panic!()` or add `std::thread::sleep(..);` to the loop body. | ||
error: empty `loop {}` is currently miscompiled and wastes CPU cycles | ||
--> $DIR/empty_loop.rs:11:9 | ||
| | ||
LL | loop {} | ||
| ^^^^^^^ | ||
| | ||
= help: You should either use `panic!()` or add `std::thread::sleep(..);` to the loop body. | ||
|
||
error: empty `loop {}` detected. You may want to either use `panic!()` or add `std::thread::sleep(..);` to the loop body. | ||
error: empty `loop {}` is currently miscompiled and wastes CPU cycles | ||
--> $DIR/empty_loop.rs:15:9 | ||
| | ||
LL | 'inner: loop {} | ||
| ^^^^^^^^^^^^^^^ | ||
| | ||
= help: You should either use `panic!()` or add `std::thread::sleep(..);` to the loop body. | ||
|
||
error: aborting due to 3 previous errors | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
error: empty `loop {}` is currently miscompiled and wastes CPU cycles | ||
--> $DIR/empty_loop_no_std.rs:23:5 | ||
| | ||
LL | loop {} | ||
| ^^^^^^^ | ||
| | ||
= note: `-D clippy::empty-loop` implied by `-D warnings` | ||
= help: You should either use `panic!()` or add some call to sleep or pause the thread to the loop body. | ||
|
||
error: aborting due to previous error | ||
|