aboutsummaryrefslogtreecommitdiffstats
path: root/libjulia/optimiser/Utilities.h
diff options
context:
space:
mode:
authorchriseth <chris@ethereum.org>2017-12-20 20:46:43 +0800
committerAlex Beregszaszi <alex@rtfs.hu>2018-02-06 00:43:39 +0800
commit9c85589122473d623da7e3de0e301662f5d835c8 (patch)
tree6d3622dd5bd574d2ca63f9c1ba5688cb31cb4484 /libjulia/optimiser/Utilities.h
parent3c8b777b9b7e438e16a3cb60dece5af3753fc8d4 (diff)
downloaddexon-solidity-9c85589122473d623da7e3de0e301662f5d835c8.tar
dexon-solidity-9c85589122473d623da7e3de0e301662f5d835c8.tar.gz
dexon-solidity-9c85589122473d623da7e3de0e301662f5d835c8.tar.bz2
dexon-solidity-9c85589122473d623da7e3de0e301662f5d835c8.tar.lz
dexon-solidity-9c85589122473d623da7e3de0e301662f5d835c8.tar.xz
dexon-solidity-9c85589122473d623da7e3de0e301662f5d835c8.tar.zst
dexon-solidity-9c85589122473d623da7e3de0e301662f5d835c8.zip
Utility to remove empty blocks.
Diffstat (limited to 'libjulia/optimiser/Utilities.h')
-rw-r--r--libjulia/optimiser/Utilities.h34
1 files changed, 34 insertions, 0 deletions
diff --git a/libjulia/optimiser/Utilities.h b/libjulia/optimiser/Utilities.h
new file mode 100644
index 00000000..88ba3f47
--- /dev/null
+++ b/libjulia/optimiser/Utilities.h
@@ -0,0 +1,34 @@
+/*
+ This file is part of solidity.
+
+ solidity is free software: you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+
+ solidity is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with solidity. If not, see <http://www.gnu.org/licenses/>.
+*/
+/**
+ * Small useful snippets for the optimiser.
+ */
+
+#pragma once
+
+#include <libjulia/ASTDataForward.h>
+
+namespace dev
+{
+namespace julia
+{
+
+/// Removes statements that are just empty blocks (non-recursive).
+void removeEmptyBlocks(Block& _block);
+
+}
+}