This is the mail archive of the gcc-help@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] | |
int
main(int ac, char **av)
{
int *r1;
int *r2; r1 = ∾
*r1 = 0;
r2 = (void *)0; /* or (void *)1, etc. */
dummy = *r1; /* k-boom */
if (*r1 != *r2)
return 1;
return 1;
} int
main(int ac, char **av)
{
volatile int *r1;
volatile int *r2; r1 = ∾
*r1 = 0;
r2 = (void *)0; /* or (void *)1, etc. */
if (*r1 != *r2)
return 1;
return 1;
}| Index Nav: | [Date Index] [Subject Index] [Author Index] [Thread Index] | |
|---|---|---|
| Message Nav: | [Date Prev] [Date Next] | [Thread Prev] [Thread Next] |