aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRabsRincon <ruben@rinconblanco.es>2022-10-04 19:54:11 +0200
committerRabsRincon <ruben@rinconblanco.es>2022-10-04 19:54:11 +0200
commit1f4e29d64fa9f7f49083da2f0671076df940e37a (patch)
treed95378526653406d35a95c778c5077c66b3f6c1d
parent7ab79037f5ba7b80fb1674441661c127e7c4e0f5 (diff)
downloadcompiler-explorer-gh-4401.tar.gz
compiler-explorer-gh-4401.zip
Do not disable opt pipeline viewer when it opensgh-4401
For #4112
-rw-r--r--static/panes/compiler.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/static/panes/compiler.js b/static/panes/compiler.js
index 85f4eccfe..ca15ae044 100644
--- a/static/panes/compiler.js
+++ b/static/panes/compiler.js
@@ -2252,7 +2252,8 @@ Compiler.prototype.updateButtons = function () {
this.ppButton.toggle(!!this.compiler.supportsPpView);
this.astButton.toggle(!!this.compiler.supportsAstView);
this.irButton.toggle(!!this.compiler.supportsIrView);
- this.llvmOptPipelineButton.toggle(!!this.compiler.supportsLLVMOptPipelineView);
+ // As per #4112, it's useful to have this available more than once: Don't disable it when it opens
+ //this.llvmOptPipelineButton.toggle(!!this.compiler.supportsLLVMOptPipelineView);
this.deviceButton.toggle(!!this.compiler.supportsDeviceAsmView);
this.rustMirButton.toggle(!!this.compiler.supportsRustMirView);
this.rustMacroExpButton.toggle(!!this.compiler.supportsRustMacroExpView);