From 044eb2d161a15a61bb4edc7691b063793745816e Mon Sep 17 00:00:00 2001 From: Christian Parpart Date: Tue, 10 Sep 2019 12:16:53 +0200 Subject: [PATCH] Assembly: Finally removing AsmFlavour::Loose --- libyul/Dialect.h | 1 - 1 file changed, 1 deletion(-) diff --git a/libyul/Dialect.h b/libyul/Dialect.h index 59237c551..5be5b812f 100644 --- a/libyul/Dialect.h +++ b/libyul/Dialect.h @@ -36,7 +36,6 @@ using Type = YulString; enum class AsmFlavour { - Loose, // no types, EVM instructions as function, jumps and direct stack manipulations Strict, // no types, EVM instructions as functions, but no jumps and no direct stack manipulations Yul // same as Strict mode with types };