view gcc/testsuite/gcc.dg/readonly-loc.c @ 118:fd00160c1b76

ifdef TARGET_64BIT
author mir3636
date Tue, 27 Feb 2018 15:01:35 +0900
parents 04ced10e8804
children
line wrap: on
line source

/* { dg-do compile } */
/* { dg-options "-O" } */
int func()
{
  const int *arr;
  const int arr2[5];
  arr[0] = 1; /* { dg-error "assignment of read-only location" "*(arr)" } */
  arr[1] = 1; /* { dg-error "assignment of read-only location" "*(arr + 4u)" } */
  arr2[0] = 1; /* { dg-error "assignment of read-only location" "arr2\[0\]" } */
  arr2[1] = 1; /* { dg-error "assignment of read-only location" "arr2\[1\]" } */
}