From: Kevin O'Connor Date: Sun, 3 Jan 2010 20:12:00 +0000 (-0500) Subject: Detect latest FC12 gcc -combine breakage. X-Git-Tag: rel-0.5.1~11 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=8918989ec2b60a38305d3c91d7ab600db0eb7593;p=seabios.git Detect latest FC12 gcc -combine breakage. Now, assigning a value to a global is needed to triger ICE. --- diff --git a/tools/test-gcc.sh b/tools/test-gcc.sh index 3bb91e9..ce3497b 100755 --- a/tools/test-gcc.sh +++ b/tools/test-gcc.sh @@ -55,6 +55,7 @@ void func1(struct ts *r); struct s1_s { int v; } g1; void __attribute__((externally_visible)) func2() { struct s1_s *l1 = &g1; + l1->v=0; } EOF cat - > $TMPFILE2 <