forked from Imagelibrary/rtems
Use Context_Control_fp* instead of void* for fp_contexts.
This commit is contained in:
@@ -138,7 +138,7 @@ unsigned int sh_set_irq_priority(
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
void _CPU_Context_save_fp(
|
void _CPU_Context_save_fp(
|
||||||
void **fp_context_ptr
|
Context_Control_fp **fp_context_ptr
|
||||||
)
|
)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
@@ -157,7 +157,7 @@ void _CPU_Context_save_fp(
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
void _CPU_Context_restore_fp(
|
void _CPU_Context_restore_fp(
|
||||||
void **fp_context_ptr
|
Context_Control_fp **fp_context_ptr
|
||||||
)
|
)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -140,7 +140,7 @@ unsigned int sh_set_irq_priority(
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
void _CPU_Context_save_fp(
|
void _CPU_Context_save_fp(
|
||||||
void **fp_context_ptr
|
Context_Control_fp **fp_context_ptr
|
||||||
)
|
)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
@@ -159,7 +159,7 @@ void _CPU_Context_save_fp(
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
void _CPU_Context_restore_fp(
|
void _CPU_Context_restore_fp(
|
||||||
void **fp_context_ptr
|
Context_Control_fp **fp_context_ptr
|
||||||
)
|
)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -64,7 +64,7 @@ register unsigned long *stack_ptr asm("r15");
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
void _CPU_Context_save_fp(
|
void _CPU_Context_save_fp(
|
||||||
void **fp_context_ptr /* r4 */
|
Context_Control_fp **fp_context_ptr /* r4 */
|
||||||
)
|
)
|
||||||
{
|
{
|
||||||
#if SH_HAS_FPU
|
#if SH_HAS_FPU
|
||||||
@@ -121,7 +121,7 @@ asm volatile("\n\
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
void _CPU_Context_restore_fp(
|
void _CPU_Context_restore_fp(
|
||||||
void **fp_context_ptr /* r4 */
|
Context_Control_fp **fp_context_ptr /* r4 */
|
||||||
)
|
)
|
||||||
{
|
{
|
||||||
#if SH_HAS_FPU
|
#if SH_HAS_FPU
|
||||||
|
|||||||
Reference in New Issue
Block a user