<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 id="divtagdefaultwrapper" style="font-size:12pt;color:#000000;font-family:Calibri,Arial,Helvetica,sans-serif;" dir="ltr">
<p>For example , </p>
<p><br>
</p>
<p>while (a > 3) { </p>
<p> cout << "hello" << endl;</p>
<p>}</p>
<p><br>
</p>
<p>Will become</p>
<p><br>
</p>
<p>while (a>3){</p>
<p>goto label1;</p>
<p>}</p>
<p>label1:</p>
<p>   cout << "hello" <<endl;</p>
<p><br>
</p>
<p>So i would need to take out the body of the loop and put it outside.</p>
<p><br>
</p>
<p>The reason i need to do this : control Flow Flattening</p>
</div>
</body>
</html>