LWG 3035. std::allocator's constructors should be constexpr
[official-gcc.git] / gcc / testsuite / gcc.dg / vect / pr33373.c
blob1a10e457c519658869fc687c3b7e9a92b04ff55a
1 /* { dg-do compile } */
2 /* { dg-additional-options "-Wno-shift-overflow" } */
3 void DOSMEM_FillIsrTable(int*isr) {
4 int i;
6 for (i=0; i<256; i++)
7 isr[i]=(((short)((i*4) & 0xFFFF)) | (0xf000 & 0xFFFF) << 16);