blob: 58a52a82a923501e19fb2bebc69c059eb1f63a8a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
/*
Date: 22 Dec 87 08:38:59 PST (Tuesday)
Subject: Serious bug in gcc 1.16
From: "James_L_Mayer.WBST128"@xerox.com
To: bug-gcc@prep.ai.mit.edu
Message-Id: <871222-084137-7045@Xerox>
Here is a bug in release 1.16 of gcc running on a Sun3:
Problem:
In assembler output, "pointer" is incremented twice for each iteration.
(when compiled optimized.)
*/
struct bits
{
unsigned bit0: 1;
unsigned bit1: 1;
} foo[2];
alpha(pointer, count)
struct bits *pointer;
int count;
{
while (--count >= 0)
{
pointer->bit0 = !pointer->bit0;
pointer++;
}
if (pointer == &foo[2])
printf("Test passed\n");
else
printf("FAILED, pointer=%x, &foo[2]=%x\n", pointer, &foo[2]);
}
main()
{
alpha(foo, 2);
return 0;
}
|