We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
#![feature(generic_arg_infer)]
1 parent f2e7a48 commit a81328aCopy full SHA for a81328a
src/r3_port_arm/src/lib.rs
@@ -1,5 +1,6 @@
1
#![feature(const_ptr_offset_from)]
2
#![feature(const_refs_to_cell)]
3
+#![feature(generic_arg_infer)]
4
#![feature(const_trait_impl)]
5
#![feature(naked_functions)]
6
#![feature(const_mut_refs)]
src/r3_port_arm/src/startup/imp.rs
@@ -15,7 +15,7 @@ impl VectorTable {
15
Self {
16
// trampolines[N]:
17
// ldr pc, [pc, #24] ; targets + N * 4
18
- _trampolines: [0xe59ff018; 8],
+ _trampolines: [0xe59ff018; _],
19
// trampolines[N]
20
_targets: [
21
unhandled_exception_handler,
0 commit comments