2004-08-19 Jay Monkman <jtm@lopingdog.com>

PR 671/bsps
	* rtems/score/cpu.h: Fixed bug in _CPU_ISR_Set_level, where input param
	was always ignored.
This commit is contained in:
Jay Monkman
2004-08-20 01:35:16 +00:00
parent a7fabaec5f
commit 22eb2e1876
2 changed files with 7 additions and 1 deletions

View File

@@ -1,3 +1,9 @@
2004-08-19 Jay Monkman <jtm@lopingdog.com>
PR 671/bsps
* rtems/score/cpu.h: Fixed bug in _CPU_ISR_Set_level, where input param
was always ignored.
2004-04-09 Joel Sherrill <joel@OARcorp.com>
* rtems/score/cpu.h: Fix typo.

View File

@@ -572,7 +572,7 @@ SCORE_EXTERN Context_Control_fp _CPU_Null_fp_context;
"ORR %0, %0, %2 \n" \
"MSR cpsr_c, %0 \n" \
: "=r" (reg) \
: "r" (reg), "0" (reg)); \
: "0" (reg), "r" (new_level)); \
}