view gcc/testsuite/gcc.dg/readonly-loc.c @ 145:1830386684a0

gcc-9.2.0
author anatofuz
date Thu, 13 Feb 2020 11:34:05 +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\]" } */
}