Dead link in sys/exec_elf.h
Working link from FreeBSD sys/sys/elf_common.h -- Nikolai Index: exec_elf.h === RCS file: /cvs/src/sys/sys/exec_elf.h,v retrieving revision 1.47 diff -u exec_elf.h --- exec_elf.h 2 May 2010 00:28:38 - 1.47 +++ exec_elf.h
Re: Bug in gcc 3?
> I'm running i386 -current of 13 May and ran into surprising behaviour > from gcc. Consider the following code snippet: > > int i; > > i = 1; > if (i += 1 == 2) > printf("%d; should be 2\n", i); > > i = 1; > if ((i += 1) == 2) > printf("%d;