Subject: CVS commit: src/usr.bin/xlint/lint2
To: None <source-changes@NetBSD.org>
From: Valeriy E. Ushakov <uwe@netbsd.org>
List: source-changes
Date: 09/28/2007 21:53:50
Module Name: src
Committed By: uwe
Date: Fri Sep 28 21:53:50 UTC 2007
Modified Files:
src/usr.bin/xlint/lint2: read.c
Log Message:
tlst[inptype(...)] is bad C code because inptype() can realloc tlst
and there's no intermediate sequence point! We actually hit this on
sh3 with -O2 where gcc4 caches tlst in a register prior to recursive
call to inptype() and if you are unlucky the recursive call needs to
realloc tlst.
Introduce a temp variable to force a sequence point.
To generate a diff of this commit:
cvs rdiff -r1.18 -r1.19 src/usr.bin/xlint/lint2/read.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.