aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorchriseth <c@ethdev.com>2017-02-17 02:58:08 +0800
committerchriseth <c@ethdev.com>2017-02-24 15:24:34 +0800
commit46d3c2dd3d3101a3d9c0eba485cf4503c8a40890 (patch)
tree95df1fc8f4de247318eb98925d87a0b35cc9482c
parent0177d964b1cf0f7a238f11aa9b617d26dddf7caf (diff)
downloaddexon-solidity-46d3c2dd3d3101a3d9c0eba485cf4503c8a40890.tar.gz
dexon-solidity-46d3c2dd3d3101a3d9c0eba485cf4503c8a40890.tar.zst
dexon-solidity-46d3c2dd3d3101a3d9c0eba485cf4503c8a40890.zip
Print source location before items.
-rw-r--r--libevmasm/Assembly.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/libevmasm/Assembly.cpp b/libevmasm/Assembly.cpp
index b7859c1f..f12e8aa8 100644
--- a/libevmasm/Assembly.cpp
+++ b/libevmasm/Assembly.cpp
@@ -130,8 +130,8 @@ public:
if (!_item.location().isEmpty() && _item.location() != m_location)
{
flush();
- printLocation();
m_location = _item.location();
+ printLocation();
}
if (!(
_item.canBeFunctional() &&