summaryrefslogtreecommitdiffstats
path: root/cpukit/score/cpu/h8300
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2004-12-10 07:10:24 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2004-12-10 07:10:24 +0000
commit0c3817b3d388ed029d7b234eadaf65445754e012 (patch)
tree5ba9db0126cf8a3ed1906b0bd853da9e5027e855 /cpukit/score/cpu/h8300
parentCosmetics. (diff)
downloadrtems-0c3817b3d388ed029d7b234eadaf65445754e012.tar.bz2
2004-12-10 Ralf Corsepius <ralf.corsepius@rtems.org>
PR 733/rtems * rtems/score/cpu.h: Remove output arg from inline asm in _CPU_ISR_Disable.
Diffstat (limited to 'cpukit/score/cpu/h8300')
-rw-r--r--cpukit/score/cpu/h8300/ChangeLog6
-rw-r--r--cpukit/score/cpu/h8300/rtems/score/cpu.h2
2 files changed, 7 insertions, 1 deletions
diff --git a/cpukit/score/cpu/h8300/ChangeLog b/cpukit/score/cpu/h8300/ChangeLog
index b46b21886f..ac9881ed5d 100644
--- a/cpukit/score/cpu/h8300/ChangeLog
+++ b/cpukit/score/cpu/h8300/ChangeLog
@@ -1,3 +1,9 @@
+2004-12-10 Ralf Corsepius <ralf.corsepius@rtems.org>
+
+ PR 733/rtems
+ * rtems/score/cpu.h: Remove output arg from inline asm in
+ _CPU_ISR_Disable.
+
2004-11-21 Ralf Corsepius <ralf.corsepius@rtems.org>
* rtems/score/types.h: Use __rtems_score_types_h as preprocessor
diff --git a/cpukit/score/cpu/h8300/rtems/score/cpu.h b/cpukit/score/cpu/h8300/rtems/score/cpu.h
index d0d340e093..aeaab05e37 100644
--- a/cpukit/score/cpu/h8300/rtems/score/cpu.h
+++ b/cpukit/score/cpu/h8300/rtems/score/cpu.h
@@ -675,7 +675,7 @@ SCORE_EXTERN void (*_CPU_Thread_dispatch_pointer)();
do { \
unsigned char __ccr; \
asm volatile( "stc ccr, %0 ; orc #0x80,ccr " \
- : "=m" (__ccr) : "0" (__ccr) ); \
+ : "=m" (__ccr) /* : "0" (__ccr) */ ); \
(_isr_cookie) = __ccr; \
} while (0)
#else