This is the mail archive of the gcc@gcc.gnu.org mailing list for the GCC project.
| Index Nav: | [Date Index] [Subject Index] [Author Index] [Thread Index] | |
|---|---|---|
| Message Nav: | [Date Prev] [Date Next] | [Thread Prev] [Thread Next] |
| Other format: | [Raw text] | |
Yes, but that's rather a different situation due to the nature of Scheme.
In C, even given just:
(void) malloc(16);
it would be surprising to most programmers to optimize away the call because malloc *does* have side-effects on real systems. For example, on UNIX, it is likely to call sbrk, which result in observable changes in the process state.
Well, yes, but
int x[65536];
also results in observable changes in the process state, and we don't hesitate to optimise it away.
| Index Nav: | [Date Index] [Subject Index] [Author Index] [Thread Index] | |
|---|---|---|
| Message Nav: | [Date Prev] [Date Next] | [Thread Prev] [Thread Next] |