From b62a6949b58a2682af05e19deea7424e7e18b9d5 Mon Sep 17 00:00:00 2001 From: Alex Beregszaszi Date: Fri, 7 Apr 2017 14:48:35 +0100 Subject: Move the IR out of the EVM block in JSON IO --- docs/using-the-compiler.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/using-the-compiler.rst b/docs/using-the-compiler.rst index f31ca329..ab7761ec 100644 --- a/docs/using-the-compiler.rst +++ b/docs/using-the-compiler.rst @@ -124,7 +124,7 @@ Input Description // devdoc - Developer documentation (natspec) // userdoc - User documentation (natspec) // metadata - Metadata - // evm.ir - New assembly format before desugaring + // ir - New assembly format before desugaring // evm.assembly - New assembly format after desugaring // evm.legacyAssemblyJSON - Old-style assembly format in JSON // evm.bytecode - All the evm.bytecode features from below @@ -207,10 +207,10 @@ Output Description userdoc: {}, // Developer documentation (natspec) devdoc: {}, + // Intermediate representation (string) + ir: "", // EVM-related outputs evm: { - // Intermediate representation (string) - ir: "", // Assembly (string) assembly: "", // Old-style assembly (string) -- cgit