Fixed indentation.

This commit is contained in:
chriseth 2015-05-13 19:13:03 +02:00
parent cebc959ff3
commit b124878c53
2 changed files with 2 additions and 4 deletions

View File

@ -199,9 +199,7 @@ void CSECodeGenerator::addDependencies(Id _c)
addDependencies(argument);
m_neededBy.insert(make_pair(argument, _c));
}
if (
expr.item &&
expr.item->type() == Operation && (
if (expr.item && expr.item->type() == Operation && (
expr.item->instruction() == Instruction::SLOAD ||
expr.item->instruction() == Instruction::MLOAD ||
expr.item->instruction() == Instruction::SHA3

View File

@ -230,7 +230,7 @@ ExpressionClasses::Id KnownState::stackElement(int _stackHeight, SourceLocation
return m_stackElements.at(_stackHeight);
// Stack element not found (not assigned yet), create new unknown equivalence class.
return m_stackElements[_stackHeight] =
m_expressionClasses->find(AssemblyItem(UndefinedItem, _stackHeight, _location));
m_expressionClasses->find(AssemblyItem(UndefinedItem, _stackHeight, _location));
}
void KnownState::clearTagUnions()