2023-04-20 14:37:15 +00:00
|
|
|
//@compile-flags: -Clink-arg=-nostartfiles
|
2023-04-20 15:19:36 +00:00
|
|
|
//@ignore-target-apple
|
2020-01-24 10:50:03 +00:00
|
|
|
|
|
|
|
#![warn(clippy::empty_loop)]
|
2021-04-03 17:20:18 +00:00
|
|
|
#![feature(lang_items, start, libc)]
|
2020-01-24 10:50:03 +00:00
|
|
|
#![no_std]
|
|
|
|
|
|
|
|
use core::panic::PanicInfo;
|
|
|
|
|
|
|
|
#[start]
|
|
|
|
fn main(argc: isize, argv: *const *const u8) -> isize {
|
2020-11-23 12:51:04 +00:00
|
|
|
// This should trigger the lint
|
2020-01-24 10:50:03 +00:00
|
|
|
loop {}
|
2023-07-28 19:35:48 +00:00
|
|
|
//~^ ERROR: empty `loop {}` wastes CPU cycles
|
2020-01-24 10:50:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[panic_handler]
|
|
|
|
fn panic(_info: &PanicInfo) -> ! {
|
2020-11-23 12:51:04 +00:00
|
|
|
// This should NOT trigger the lint
|
2020-01-24 10:50:03 +00:00
|
|
|
loop {}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[lang = "eh_personality"]
|
2020-11-23 12:51:04 +00:00
|
|
|
extern "C" fn eh_personality() {
|
|
|
|
// This should also trigger the lint
|
|
|
|
loop {}
|
2023-07-28 19:35:48 +00:00
|
|
|
//~^ ERROR: empty `loop {}` wastes CPU cycles
|
2020-11-23 12:51:04 +00:00
|
|
|
}
|