mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Fixed indentation.
This commit is contained in:
parent
cebc959ff3
commit
b124878c53
@ -199,9 +199,7 @@ void CSECodeGenerator::addDependencies(Id _c)
|
|||||||
addDependencies(argument);
|
addDependencies(argument);
|
||||||
m_neededBy.insert(make_pair(argument, _c));
|
m_neededBy.insert(make_pair(argument, _c));
|
||||||
}
|
}
|
||||||
if (
|
if (expr.item && expr.item->type() == Operation && (
|
||||||
expr.item &&
|
|
||||||
expr.item->type() == Operation && (
|
|
||||||
expr.item->instruction() == Instruction::SLOAD ||
|
expr.item->instruction() == Instruction::SLOAD ||
|
||||||
expr.item->instruction() == Instruction::MLOAD ||
|
expr.item->instruction() == Instruction::MLOAD ||
|
||||||
expr.item->instruction() == Instruction::SHA3
|
expr.item->instruction() == Instruction::SHA3
|
||||||
|
@ -230,7 +230,7 @@ ExpressionClasses::Id KnownState::stackElement(int _stackHeight, SourceLocation
|
|||||||
return m_stackElements.at(_stackHeight);
|
return m_stackElements.at(_stackHeight);
|
||||||
// Stack element not found (not assigned yet), create new unknown equivalence class.
|
// Stack element not found (not assigned yet), create new unknown equivalence class.
|
||||||
return m_stackElements[_stackHeight] =
|
return m_stackElements[_stackHeight] =
|
||||||
m_expressionClasses->find(AssemblyItem(UndefinedItem, _stackHeight, _location));
|
m_expressionClasses->find(AssemblyItem(UndefinedItem, _stackHeight, _location));
|
||||||
}
|
}
|
||||||
|
|
||||||
void KnownState::clearTagUnions()
|
void KnownState::clearTagUnions()
|
||||||
|
Loading…
Reference in New Issue
Block a user