1 /* { dg-do compile } */
2 /* { dg-options "-O3 -w" } */
6 int *findOrAddBackgroundInPalette_palette_pnm
;
7 static void findOrAddBackgroundInPalette(unsigned *paletteSizeP
,
8 int *backgroundIndexP
) {
10 *backgroundIndexP
= (*paletteSizeP
)++;
13 pm_message(findOrAddBackgroundInPalette_palette_pnm
[*backgroundIndexP
]);
15 void computeColorMap(int *backgroundIndexP
) {
17 findOrAddBackgroundInPalette(&paletteSize
, backgroundIndexP
);
20 unsigned backgroundIndex
;
22 computeColorMap(&backgroundIndex
);