5.5. TEMP_REDUCE

Format:


        PRAGMA OPT TEMP_REDUCE { YES | NO | }
      

YES -- Perform temporary variable reduction
* NO -- Do not perform temporary variable reduction

Temporary reduction effects complex instructions. For example, without temporary reduction the expression:

        a = b + c * d + e
      
will use three temporary variables. With reduction, it will only use one.