Branch: Tag:

2014-08-21

2014-08-21 18:11:55 by Martin Nilsson <nilsson@opera.com>

Added void to zero argument functions.

1370:   /* Intended to be called from machine code before inlined function    * calls (primarily the CALL_BUILTIN opcodes), to ensure thread    * switching. */ - void call_check_threads_etc() + void call_check_threads_etc(void)   {    FAST_CHECK_THREADS_ON_CALL();   }
1379: Inside #if defined(OPCODE_INLINE_BRANCH) || defined(INS_F_JUMP) || \
   defined(INS_F_JUMP_WITH_ARG) || defined(INS_F_JUMP_WITH_TWO_ARGS)   /* Intended to be called from machine code on backward branch jumps,    * to ensure thread switching. */ - void branch_check_threads_etc() + void branch_check_threads_etc(void)   {    FAST_CHECK_THREADS_ON_BRANCH();   }