<div dir="ltr"><div style="margin:0px 0px 5px;padding:0px;border:0px;font-size:15px;width:660px;word-wrap:break-word;line-height:1.3;color:rgb(36,39,41);font-family:Arial,'Helvetica Neue',Helvetica,sans-serif"><p style="margin:0px 0px 1em;padding:0px;border:0px;clear:both">This code:</p><pre style="margin-top:0px;margin-bottom:1em;padding:5px;border:0px;font-size:13px;width:auto;max-height:600px;overflow:auto;font-family:Consolas,Menlo,Monaco,'Lucida Console','Liberation Mono','DejaVu Sans Mono','Bitstream Vera Sans Mono','Courier New',monospace,sans-serif;word-wrap:normal;background-color:rgb(239,240,241)"><code style="margin:0px;padding:0px;border:0px;font-family:Consolas,Menlo,Monaco,'Lucida Console','Liberation Mono','DejaVu Sans Mono','Bitstream Vera Sans Mono','Courier New',monospace,sans-serif;white-space:inherit"> if (IfStmt* ifS = dyn_cast<IfStmt>(st)) {
   errs() << "Found an IF statement ";
   VarDecl* var = ifS->getConditionVariable();
   errs() << var->getNameAsString();
 }
</code></pre><p style="margin:0px 0px 1em;padding:0px;border:0px;clear:both">produces <code style="margin:0px;padding:1px 5px;border:0px;font-size:13px;font-family:Consolas,Menlo,Monaco,'Lucida Console','Liberation Mono','DejaVu Sans Mono','Bitstream Vera Sans Mono','Courier New',monospace,sans-serif;white-space:pre-wrap;background-color:rgb(239,240,241)">cannot initialize object parameter of type 'const clang::NamedDecl' with an expression of type 'clang::VarDecl'</code> error on <code style="margin:0px;padding:1px 5px;border:0px;font-size:13px;font-family:Consolas,Menlo,Monaco,'Lucida Console','Liberation Mono','DejaVu Sans Mono','Bitstream Vera Sans Mono','Courier New',monospace,sans-serif;white-space:pre-wrap;background-color:rgb(239,240,241)">errs() << var->getNameAsString();</code> line and the program crashes with a seg fault. I can't find what's wrong with this? Please help.</p><div><br></div></div><div><br></div>-- <br><div data-smartmail="gmail_signature"><div dir="ltr"><div dir="ltr"><font color="#f1c232">Regards,</font><div><font color="#f1c232">Dhriti Khanna</font></div></div></div></div>
</div>