From 2410859f7abae264831c75753d3c8cd8f4d940cc Mon Sep 17 00:00:00 2001 From: chriseth Date: Thu, 18 Jun 2015 18:29:32 +0200 Subject: [PATCH] Compiler update to 53659d489d7da120209c51d88853f0ee58cd60f8. --- index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index 5a9e7009c5..91df6539ba 100644 --- a/index.html +++ b/index.html @@ -56,7 +56,7 @@ body { Source code on the left, compiled code and AST on the right (or error).
Note: Chrome/Chromium currently reports "Uncaught JavaScript Exception". To work around this problem, enable the debug console (Ctrl+Shift+i) and reload.
-Version: d810b3d1... 2015-06-12 +Version: 53659d48... 2015-06-18
@@ -219,7 +219,7 @@ var formatGasEstimates = function(data) { text += ' ' + fun + ': ' + gasToText(data.external[fun]) + '\n'; text += 'Internal:\n'; for (var fun in data.internal) - text += ' ' + fun + ': ' + gasToText(data.external[fun]) + '\n'; + text += ' ' + fun + ': ' + gasToText(data.internal[fun]) + '\n'; return text; }; var formatAssemblyText = function(asm, prefix, source) {