blob: 67af05fe5b3c496fa60a3d780efd50e8c49f909b (
plain)
1
2
3
4
5
6
7
|
/* PR target/34734 */
/* { dg-do compile } */
/* { dg-options "-Wuninitialized" } */
#include "progmem.h"
const char c PROGMEM; /* { dg-warning "uninitialized variable 'c' put into program memory area" } */
|