Bulletin number: 343 Products affected: D4214A D5214A D7214A Description: Compiler bug Component: icc Date: Mon Sep 10 12:53:32 BST 1990 ----- The following piece of code int main(void) { int a, b; short c; static char d[64]; a = d[c = b]; } gives the error message Fatal internal error-icc-Pushing an int with no space left when compiled for T8, T9, T425 and T400. The problem relates to the use of the 'dup' instruction on 32 bit processors that support it. The work around is to code the assignment as c = b; a = d[c];