aboutsummaryrefslogtreecommitdiffstats
path: root/solc/CommandLineInterface.cpp
diff options
context:
space:
mode:
authorAlex Beregszaszi <alex@rtfs.hu>2018-06-13 01:36:38 +0800
committerAlex Beregszaszi <alex@rtfs.hu>2018-06-14 16:31:28 +0800
commit782bc41dbd34a3ed2c5c7074647f039f7a974cdf (patch)
tree28d98f57363a006d45b04563fbecd38faaf19125 /solc/CommandLineInterface.cpp
parentbaeabe1c2d1c5c447eeb943f3b750459a6bc924d (diff)
downloaddexon-solidity-782bc41dbd34a3ed2c5c7074647f039f7a974cdf.tar
dexon-solidity-782bc41dbd34a3ed2c5c7074647f039f7a974cdf.tar.gz
dexon-solidity-782bc41dbd34a3ed2c5c7074647f039f7a974cdf.tar.bz2
dexon-solidity-782bc41dbd34a3ed2c5c7074647f039f7a974cdf.tar.lz
dexon-solidity-782bc41dbd34a3ed2c5c7074647f039f7a974cdf.tar.xz
dexon-solidity-782bc41dbd34a3ed2c5c7074647f039f7a974cdf.tar.zst
dexon-solidity-782bc41dbd34a3ed2c5c7074647f039f7a974cdf.zip
Rename JULIA/IULIA to Yul in assembly interface
Diffstat (limited to 'solc/CommandLineInterface.cpp')
-rw-r--r--solc/CommandLineInterface.cpp2
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))
{