* misc.c [!ALWAYS_SMALL_CLEAR_STACK && !STACK_NOT_SCANNED
&& !ASM_CLEAR_CODE && CPPCHECK] (GC_clear_stack_inner): Pass dummy[0]
instead of address of dummy variable.
}
/* Make sure the recursive call is not a tail call, and the bzero */
/* call is not recognized as dead code. */
- GC_noop1(COVERT_DATAFLOW(dummy));
+# if defined(CPPCHECK)
+ GC_noop1(dummy[0]);
+# else
+ GC_noop1(COVERT_DATAFLOW(dummy));
+# endif
return(arg);
}
# endif /* !ASM_CLEAR_CODE */