Format:
PRAGMA OPT TEMP_REDUCE { YES | NO | }
| YES -- Perform temporary variable reduction |
| * NO -- Do not perform temporary variable reduction |
a = b + c * d + e
will use three temporary variables. With reduction, it will only
use one.