Fix Coverity CID60778 - control flow depends on compile time constant.

This commit is contained in:
Axel Naumann 2016-09-12 21:37:53 +02:00 committed by sftnight
parent b26d955f67
commit 26580a75ee

View File

@ -572,8 +572,8 @@ namespace cling {
bool IncrementalParser::transformTransactionIR(Transaction* T) {
// Transform IR
bool success = true;
if (!success)
m_Interpreter->unload(*T);
//if (!success)
// m_Interpreter->unload(*T);
if (m_BackendPasses && T->getModule())
m_BackendPasses->runOnModule(*T->getModule());
return success;