<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style type="text/css" style="display:none;"> P {margin-top:0;margin-bottom:0;} </style>
</head>
<body dir="ltr">
<div style="font-family: Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);">
I am interested in why your code cares about optimization level.<br>
<br>
<span style="color: rgb(0, 0, 0); font-family: Calibri, Helvetica, sans-serif; font-size: 12pt;">Most modern compilers have many different optimizations controlled by command line switches, and they also package them into a few sets for easy usage</span><br>
</div>
<div style="font-family: Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);">
<br>
They can be summarized as:</div>
<div style="font-family: Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);">
<br>
</div>
<div style="font-family: Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);">
optimizations that have leave a very close source to instruction set and data placement correspondence,  for ease of debugging</div>
<div style="font-family: Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);">
  these are always all on by default</div>
<div style="font-family: Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);">
<br>
safe optimizations that shrink the instructions size<br>
<br>
safe optimizations that expand the instructions size and usually decrease execution<br>
<br>
unsafe optimizations like the above - these may cause crashes or bad answers unless your program meets some additional requirements<br>
<br>
/Bevin</div>
</body>
</html>