File tree 3 files changed +5
-0
lines changed
ide-completion/src/completions 3 files changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -377,6 +377,7 @@ pub enum FnAbi {
377
377
AvrNonBlockingInterrupt ,
378
378
C ,
379
379
CCmseNonsecureCall ,
380
+ CCmseNonsecureEntry ,
380
381
CDecl ,
381
382
CDeclUnwind ,
382
383
CUnwind ,
@@ -434,6 +435,7 @@ impl FnAbi {
434
435
s if * s == sym:: avr_dash_interrupt => FnAbi :: AvrInterrupt ,
435
436
s if * s == sym:: avr_dash_non_dash_blocking_dash_interrupt => FnAbi :: AvrNonBlockingInterrupt ,
436
437
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 ,
437
439
s if * s == sym:: C_dash_unwind => FnAbi :: CUnwind ,
438
440
s if * s == sym:: C => FnAbi :: C ,
439
441
s if * s == sym:: cdecl_dash_unwind => FnAbi :: CDeclUnwind ,
@@ -477,6 +479,7 @@ impl FnAbi {
477
479
FnAbi :: AvrNonBlockingInterrupt => "avr-non-blocking-interrupt" ,
478
480
FnAbi :: C => "C" ,
479
481
FnAbi :: CCmseNonsecureCall => "C-cmse-nonsecure-call" ,
482
+ FnAbi :: CCmseNonsecureEntry => "C-cmse-nonsecure-entry" ,
480
483
FnAbi :: CDecl => "C-decl" ,
481
484
FnAbi :: CDeclUnwind => "cdecl-unwind" ,
482
485
FnAbi :: CUnwind => "C-unwind" ,
Original file line number Diff line number Diff line change @@ -32,6 +32,7 @@ const SUPPORTED_CALLING_CONVENTIONS: &[&str] = &[
32
32
"riscv-interrupt-m" ,
33
33
"riscv-interrupt-s" ,
34
34
"C-cmse-nonsecure-call" ,
35
+ "C-cmse-nonsecure-entry" ,
35
36
"wasm" ,
36
37
"system" ,
37
38
"system-unwind" ,
Original file line number Diff line number Diff line change @@ -94,6 +94,7 @@ define_symbols! {
94
94
avr_dash_interrupt = "avr-interrupt" ,
95
95
avr_dash_non_dash_blocking_dash_interrupt = "avr-non-blocking-interrupt" ,
96
96
C_dash_cmse_dash_nonsecure_dash_call = "C-cmse-nonsecure-call" ,
97
+ C_dash_cmse_dash_nonsecure_dash_entry = "C-cmse-nonsecure-entry" ,
97
98
C_dash_unwind = "C-unwind" ,
98
99
cdecl_dash_unwind = "cdecl-unwind" ,
99
100
fastcall_dash_unwind = "fastcall-unwind" ,
You can’t perform that action at this time.
0 commit comments