diff options
author | chriseth <c@ethdev.com> | 2017-02-17 02:58:08 +0800 |
---|---|---|
committer | chriseth <c@ethdev.com> | 2017-02-24 15:24:34 +0800 |
commit | 46d3c2dd3d3101a3d9c0eba485cf4503c8a40890 (patch) | |
tree | 95df1fc8f4de247318eb98925d87a0b35cc9482c /libevmasm/Assembly.cpp | |
parent | 0177d964b1cf0f7a238f11aa9b617d26dddf7caf (diff) | |
download | dexon-solidity-46d3c2dd3d3101a3d9c0eba485cf4503c8a40890.tar.gz dexon-solidity-46d3c2dd3d3101a3d9c0eba485cf4503c8a40890.tar.zst dexon-solidity-46d3c2dd3d3101a3d9c0eba485cf4503c8a40890.zip |
Print source location before items.
Diffstat (limited to 'libevmasm/Assembly.cpp')
-rw-r--r-- | libevmasm/Assembly.cpp | 2 |
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() && |