OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.dg/] [lvalue-5.c] - Blame information for rev 689

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 689 jeremybenn
/* Test assignment to elements of a string literal is a warning, not
2
   an error.  PR 27676.  */
3
/* { dg-do compile } */
4
/* { dg-options "-pedantic-errors" } */
5
 
6
void
7
f (void)
8
{
9
  "foo"[0] = 0; /* { dg-warning "assignment of read-only location" } */
10
  "foo"[0]++; /* { dg-warning "increment of read-only location" } */
11
  "foo"[0]--; /* { dg-warning "decrement of read-only location" } */
12
  ++"foo"[0]; /* { dg-warning "increment of read-only location" } */
13
  --"foo"[0]; /* { dg-warning "decrement of read-only location" } */
14
}

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.