Remove unknown clang ASM keywords

This commit is contained in:
Michal Podhradsky 2021-01-19 14:41:42 -08:00
parent 578d040659
commit d55920c584

View file

@ -117,7 +117,6 @@ at the top of this file. */
/*-----------------------------------------------------------*/
.align 8
.func
freertos_risc_v_trap_handler:
addi sp, sp, -portCONTEXT_SIZE
store_x x1, 1 * portWORD_SIZE( sp )
@ -291,11 +290,9 @@ processed_source:
addi sp, sp, portCONTEXT_SIZE
mret
.endfunc
/*-----------------------------------------------------------*/
.align 8
.func
xPortStartFirstTask:
#if( portasmHAS_SIFIVE_CLINT != 0 )
@ -347,7 +344,6 @@ xPortStartFirstTask:
addi sp, sp, portCONTEXT_SIZE
ret
.endfunc
/*-----------------------------------------------------------*/
/*
@ -413,7 +409,6 @@ xPortStartFirstTask:
* pxCode
*/
.align 8
.func
pxPortInitialiseStack:
csrr t0, mstatus /* Obtain current mstatus value. */
@ -439,5 +434,4 @@ chip_specific_stack_frame: /* First add any chip specific registers to the st
addi a0, a0, -portWORD_SIZE
store_x a1, 0(a0) /* mret value (pxCode parameter) onto the stack. */
ret
.endfunc
/*-----------------------------------------------------------*/