diff options
author | Alex Beregszaszi <alex@rtfs.hu> | 2018-06-13 01:36:38 +0800 |
---|---|---|
committer | Alex Beregszaszi <alex@rtfs.hu> | 2018-06-14 16:31:28 +0800 |
commit | 782bc41dbd34a3ed2c5c7074647f039f7a974cdf (patch) | |
tree | 28d98f57363a006d45b04563fbecd38faaf19125 /solc | |
parent | baeabe1c2d1c5c447eeb943f3b750459a6bc924d (diff) | |
download | dexon-solidity-782bc41dbd34a3ed2c5c7074647f039f7a974cdf.tar.gz dexon-solidity-782bc41dbd34a3ed2c5c7074647f039f7a974cdf.tar.zst dexon-solidity-782bc41dbd34a3ed2c5c7074647f039f7a974cdf.zip |
Rename JULIA/IULIA to Yul in assembly interface
Diffstat (limited to 'solc')
-rw-r--r-- | solc/CommandLineInterface.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/solc/CommandLineInterface.cpp b/solc/CommandLineInterface.cpp index 4ee939d8..8b331c75 100644 --- a/solc/CommandLineInterface.cpp +++ b/solc/CommandLineInterface.cpp @@ -787,7 +787,7 @@ bool CommandLineInterface::processInput() m_onlyAssemble = true; using Input = AssemblyStack::Language; using Machine = AssemblyStack::Machine; - Input inputLanguage = m_args.count(g_argYul) ? Input::JULIA : (m_args.count(g_argStrictAssembly) ? Input::StrictAssembly : Input::Assembly); + Input inputLanguage = m_args.count(g_argYul) ? Input::Yul : (m_args.count(g_argStrictAssembly) ? Input::StrictAssembly : Input::Assembly); Machine targetMachine = Machine::EVM; if (m_args.count(g_argMachine)) { |