mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 06:44:35 +00:00
Fix compilation errors in rustc_codegen_gcc examples
This commit is contained in:
parent
42bdc873e5
commit
ded81de066
@ -18,7 +18,7 @@ extern "C" {
|
|||||||
}
|
}
|
||||||
|
|
||||||
#[panic_handler]
|
#[panic_handler]
|
||||||
fn panic_handler(_: &core::panic::PanicInfo) -> ! {
|
fn panic_handler(_: &core::panic::PanicInfo<'_>) -> ! {
|
||||||
core::intrinsics::abort();
|
core::intrinsics::abort();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
extern {}
|
extern {}
|
||||||
|
|
||||||
#[panic_handler]
|
#[panic_handler]
|
||||||
fn panic_handler(_: &core::panic::PanicInfo) -> ! {
|
fn panic_handler(_: &core::panic::PanicInfo<'_>) -> ! {
|
||||||
core::intrinsics::abort();
|
core::intrinsics::abort();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user