From: Michel Pollet Date: Tue, 4 Mar 2014 08:51:15 +0000 (+0000) Subject: test: Fix coroutine on old gcc X-Git-Tag: v1.2~18 X-Git-Url: https://git.htl-mechatronik.at/public/?a=commitdiff_plain;h=1518952330756db153df63e752c2964aab4aea7c;p=sx%2Fsimavr.git test: Fix coroutine on old gcc Removed traling colon. Fix issue #34 Signed-off-by: Michel Pollet --- diff --git a/tests/atmega88_coroutine.c b/tests/atmega88_coroutine.c index 559fcf8..4f9f760 100644 --- a/tests/atmega88_coroutine.c +++ b/tests/atmega88_coroutine.c @@ -57,7 +57,7 @@ static inline void _set_stack(register void * stack) "out __SP_H__, %B0" "\n\t" "out __SREG__, r0" "\n\t" "out __SP_L__, %A0" "\n\t" - : : "e" (stack) : + : : "e" (stack) /* : */ ); }