Replace Magic Number with Symbolic Constant

        ...
        eax = 0x7fffffff;
        ...

        const int MAXINT = 0x7fffffff;
        ...
        eax = MAXINT;
        ...

Motivation

When compiling, all the semantic information concerning enumeration values, pre-processor macro definitions, and constants is lost. So all the symbolic constants must be specified during decompilation.

Mechanics