-
Notifications
You must be signed in to change notification settings - Fork 152
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
241: Fix unused doc lint firing on `#[pre_init]` and add a test r=adamgreig a=jonas-schievink Co-authored-by: Jonas Schievink <[email protected]>
- Loading branch information
Showing
3 changed files
with
55 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
//! Tests that a crate can still build with all warnings enabled. | ||
//! | ||
//! The code generated by the `cortex-m-rt` macros might need to manually | ||
//! `#[allow]` some of them (even though Rust does that by default for a few | ||
//! warnings too). | ||
|
||
#![no_std] | ||
#![no_main] | ||
#![deny(warnings, missing_docs, rust_2018_idioms)] | ||
|
||
extern crate cortex_m_rt; | ||
extern crate panic_halt; | ||
|
||
use cortex_m_rt::{entry, exception, interrupt, pre_init, ExceptionFrame}; | ||
|
||
#[allow(non_camel_case_types)] | ||
enum interrupt { | ||
INT, | ||
} | ||
|
||
extern "C" { | ||
fn INT(); | ||
} | ||
|
||
union Vector { | ||
#[allow(dead_code)] | ||
handler: unsafe extern "C" fn(), | ||
} | ||
|
||
#[link_section = ".vector_table.interrupts"] | ||
#[no_mangle] | ||
#[used] | ||
static __INTERRUPTS: [Vector; 1] = [Vector { handler: INT }]; | ||
|
||
/// Dummy interrupt. | ||
#[interrupt] | ||
fn INT() {} | ||
|
||
#[exception] | ||
fn HardFault(_eh: &ExceptionFrame) -> ! { | ||
loop {} | ||
} | ||
|
||
#[entry] | ||
fn main() -> ! { | ||
loop {} | ||
} | ||
|
||
#[pre_init] | ||
unsafe fn pre_init() {} |
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