mirror of
https://github.com/0xFEEDC0DE64/arduino-esp32.git
synced 2025-07-02 05:20:59 +02:00
Trailing spaces (#3738)
* fix typo in WiFiMulti * clean up trailing spaces * clean up script file used in cleaning Co-authored-by: Me No Dev <me-no-dev@users.noreply.github.com>
This commit is contained in:
@ -240,7 +240,7 @@ _BEGIN_STD_C
|
||||
#endif
|
||||
|
||||
#if (defined(__CR16__) || defined(__CR16C__) ||defined(__CR16CP__))
|
||||
/* r6, r7, r8, r9, r10, r11, r12 (r12L, r12H),
|
||||
/* r6, r7, r8, r9, r10, r11, r12 (r12L, r12H),
|
||||
* r13 (r13L, r13H), ra(raL, raH), sp(spL, spH) */
|
||||
#define _JBLEN 14
|
||||
#define _JBTYPE unsigned short
|
||||
@ -269,7 +269,7 @@ _BEGIN_STD_C
|
||||
#endif
|
||||
|
||||
#ifdef __SPU__
|
||||
#define _JBLEN 50
|
||||
#define _JBLEN 50
|
||||
#define _JBTYPE __vector signed int
|
||||
#endif
|
||||
|
||||
@ -287,13 +287,13 @@ _BEGIN_STD_C
|
||||
(in case a subsequent alloca in proc moves $sp), and the return
|
||||
address within proc. Everything else is saved on the stack in the
|
||||
normal save areas. The jmp_buf structure is:
|
||||
|
||||
|
||||
struct jmp_buf {
|
||||
int regs[12];
|
||||
int save[4];
|
||||
void *return_address;
|
||||
}
|
||||
|
||||
|
||||
See the setjmp code for details. */
|
||||
|
||||
#define _JBLEN 17 /* 12 + 4 + 1 */
|
||||
@ -349,7 +349,7 @@ _BEGIN_STD_C
|
||||
* 2) Function-call versions.
|
||||
*
|
||||
* The built-in versions are used most of the time. When used, gcc replaces
|
||||
* calls to setjmp()/longjmp() with inline assembly code. The built-in
|
||||
* calls to setjmp()/longjmp() with inline assembly code. The built-in
|
||||
* versions save/restore a variable number of registers.
|
||||
|
||||
* _JBLEN is set to 40 to be ultra-safe with the built-in versions.
|
||||
|
Reference in New Issue
Block a user