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

Use == for comparison and obey 80 column rule

git-svn-id: http://root.cern.ch/svn/root/trunk@41657 27541ba8-7e3a-0410-8455-c3a389f83636
parent 11cc414b
Branches
Tags
No related merge requests found
...@@ -155,7 +155,8 @@ namespace cling { ...@@ -155,7 +155,8 @@ namespace cling {
// CI->getCodeGenOpts().DebugInfo = 1; // want debug info // CI->getCodeGenOpts().DebugInfo = 1; // want debug info
// CI->getCodeGenOpts().EmitDeclMetadata = 1; // For unloading, for later // CI->getCodeGenOpts().EmitDeclMetadata = 1; // For unloading, for later
CI->getCodeGenOpts().OptimizationLevel = 0; // see pure SSA, that comes out 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"); assert((CI->getCodeGenOpts().VerifyModule == 1)
&& "When asserts are on, let's also assert the module");
return CI; return CI;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment