diff options
author | Alex Beregszaszi <alex@rtfs.hu> | 2018-06-21 05:19:06 +0800 |
---|---|---|
committer | Alex Beregszaszi <alex@rtfs.hu> | 2018-06-21 05:19:06 +0800 |
commit | a392e0f0469c711aed5e21b28781de25424d5ab7 (patch) | |
tree | f523bd868c5fc290d1044b2e74fd7c840a9db8c0 /libsolidity/interface/CompilerStack.cpp | |
parent | edc0530452782ee82b35185579ce5fb7e4584a90 (diff) | |
download | dexon-solidity-a392e0f0469c711aed5e21b28781de25424d5ab7.tar.gz dexon-solidity-a392e0f0469c711aed5e21b28781de25424d5ab7.tar.zst dexon-solidity-a392e0f0469c711aed5e21b28781de25424d5ab7.zip |
Properly catch optimizer/assembly exception in CompilerStack
Diffstat (limited to 'libsolidity/interface/CompilerStack.cpp')
-rw-r--r-- | libsolidity/interface/CompilerStack.cpp | 19 |
1 files changed, 10 insertions, 9 deletions
diff --git a/libsolidity/interface/CompilerStack.cpp b/libsolidity/interface/CompilerStack.cpp index a8668336..4e8d1461 100644 --- a/libsolidity/interface/CompilerStack.cpp +++ b/libsolidity/interface/CompilerStack.cpp @@ -741,16 +741,20 @@ void CompilerStack::compileContract( // 16-bit big endian length cborEncodedMetadata += toCompactBigEndian(cborEncodedMetadata.size(), 2); - // Run optimiser and compile the contract. - compiler->compileContract(_contract, _compiledContracts, cborEncodedMetadata); - try { - compiledContract.object = compiler->assembledObject(); + // Run optimiser and compile the contract. + compiler->compileContract(_contract, _compiledContracts, cborEncodedMetadata); } catch(eth::OptimizerException const&) { - solAssert(false, "Assembly optimizer exception for bytecode"); + solAssert(false, "Optimizer exception during compilation"); + } + + try + { + // Assemble deployment (incl. runtime) object. + compiledContract.object = compiler->assembledObject(); } catch(eth::AssemblyException const&) { @@ -759,12 +763,9 @@ void CompilerStack::compileContract( try { + // Assemble runtime object. compiledContract.runtimeObject = compiler->runtimeObject(); } - catch(eth::OptimizerException const&) - { - solAssert(false, "Assembly optimizer exception for deployed bytecode"); - } catch(eth::AssemblyException const&) { solAssert(false, "Assembly exception for deployed bytecode"); |