Glossary

OPTIMIZE(0)

No optimization (default). The compiler generates straightforward code that is easy to debug but not optimized for performance. - **OPTIMIZE(1)** --- Standard optimization. The compiler performs local optimizations within each paragraph, including common subexpression elimination, strength reduction

Learn More

Related Terms