Remove not needed __builtin_expect due to malloc predictor.
[official-gcc.git] / gcc / testsuite / gcc.target / avr / trivial.c
blobf1beecb1ece5864d9c8262b6890dff3ae59b8335
1 /* { dg-do run } */
3 #include <stdio.h>
5 #define PROGMEM __attribute__((__progmem__))
7 const char PROGMEM a1 = 0x12;
8 const int PROGMEM a2 = 0x2345;
9 const long PROGMEM a3 = 0x12345678;
11 int main(void)
13 printf ("Hello World\n");
14 return 0;