File tree Expand file tree Collapse file tree 3 files changed +5
-0
lines changed
ide-completion/src/completions Expand file tree Collapse file tree 3 files changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -377,6 +377,7 @@ pub enum FnAbi {
377377 AvrNonBlockingInterrupt ,
378378 C ,
379379 CCmseNonsecureCall ,
380+ CCmseNonsecureEntry ,
380381 CDecl ,
381382 CDeclUnwind ,
382383 CUnwind ,
@@ -434,6 +435,7 @@ impl FnAbi {
434435 s if * s == sym:: avr_dash_interrupt => FnAbi :: AvrInterrupt ,
435436 s if * s == sym:: avr_dash_non_dash_blocking_dash_interrupt => FnAbi :: AvrNonBlockingInterrupt ,
436437 s if * s == sym:: C_dash_cmse_dash_nonsecure_dash_call => FnAbi :: CCmseNonsecureCall ,
438+ s if * s == sym:: C_dash_cmse_dash_nonsecure_dash_entry => FnAbi :: CCmseNonsecureEntry ,
437439 s if * s == sym:: C_dash_unwind => FnAbi :: CUnwind ,
438440 s if * s == sym:: C => FnAbi :: C ,
439441 s if * s == sym:: cdecl_dash_unwind => FnAbi :: CDeclUnwind ,
@@ -477,6 +479,7 @@ impl FnAbi {
477479 FnAbi :: AvrNonBlockingInterrupt => "avr-non-blocking-interrupt" ,
478480 FnAbi :: C => "C" ,
479481 FnAbi :: CCmseNonsecureCall => "C-cmse-nonsecure-call" ,
482+ FnAbi :: CCmseNonsecureEntry => "C-cmse-nonsecure-entry" ,
480483 FnAbi :: CDecl => "C-decl" ,
481484 FnAbi :: CDeclUnwind => "cdecl-unwind" ,
482485 FnAbi :: CUnwind => "C-unwind" ,
Original file line number Diff line number Diff line change @@ -32,6 +32,7 @@ const SUPPORTED_CALLING_CONVENTIONS: &[&str] = &[
3232 "riscv-interrupt-m" ,
3333 "riscv-interrupt-s" ,
3434 "C-cmse-nonsecure-call" ,
35+ "C-cmse-nonsecure-entry" ,
3536 "wasm" ,
3637 "system" ,
3738 "system-unwind" ,
Original file line number Diff line number Diff line change @@ -94,6 +94,7 @@ define_symbols! {
9494 avr_dash_interrupt = "avr-interrupt" ,
9595 avr_dash_non_dash_blocking_dash_interrupt = "avr-non-blocking-interrupt" ,
9696 C_dash_cmse_dash_nonsecure_dash_call = "C-cmse-nonsecure-call" ,
97+ C_dash_cmse_dash_nonsecure_dash_entry = "C-cmse-nonsecure-entry" ,
9798 C_dash_unwind = "C-unwind" ,
9899 cdecl_dash_unwind = "cdecl-unwind" ,
99100 fastcall_dash_unwind = "fastcall-unwind" ,
You can’t perform that action at this time.
0 commit comments