Re: Question about implicit memset invocation

2005-12-27 Thread Ian Lance Taylor
Eric Fisher <[EMAIL PROTECTED]> writes: > I'd like to know since gcc implicitly call memset function to perform > optimization and my c libraries are unusable for now. Can I take > another way? Say don't call memset. How to do that? In your tm.h file define CLEAR_BY_PIECES_P to always return 1. (

Question about implicit memset invocation

2005-12-27 Thread Eric Fisher
Hello, I'd like to know since gcc implicitly call memset function to perform optimization and my c libraries are unusable for now. Can I take another way? Say don't call memset. How to do that? Yours, Eric.