Skip to content
Snippets Groups Projects
Commit a6902f32 authored by Vassil Vassilev's avatar Vassil Vassilev
Browse files

Got by coverity "smartness" this should revert r41657 + add better comment

git-svn-id: http://root.cern.ch/svn/root/trunk@41658 27541ba8-7e3a-0410-8455-c3a389f83636
parent fbc1dc3a
No related branches found
No related tags found
No related merge requests found
......@@ -155,8 +155,8 @@ namespace cling {
// CI->getCodeGenOpts().DebugInfo = 1; // want debug info
// CI->getCodeGenOpts().EmitDeclMetadata = 1; // For unloading, for later
CI->getCodeGenOpts().OptimizationLevel = 0; // see pure SSA, that comes out
assert((CI->getCodeGenOpts().VerifyModule == 1)
&& "When asserts are on, let's also assert the module");
// When asserts are on, TURN ON not compare the VerifyModule
assert(CI->getCodeGenOpts().VerifyModule = 1);
return CI;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment