summaryrefslogtreecommitdiffstats
path: root/cpukit/score/cpu/h8300/rtems/score/cpu.h
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/rtems/score/cpu.h
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/rtems/score/cpu.h')
-rw-r--r--cpukit/score/cpu/h8300/rtems/score/cpu.h2
1 files changed, 1 insertions, 1 deletions
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