diff options
author | RabsRincon <ruben@rinconblanco.es> | 2022-10-04 19:54:11 +0200 |
---|---|---|
committer | RabsRincon <ruben@rinconblanco.es> | 2022-10-04 19:54:11 +0200 |
commit | 1f4e29d64fa9f7f49083da2f0671076df940e37a (patch) | |
tree | d95378526653406d35a95c778c5077c66b3f6c1d | |
parent | 7ab79037f5ba7b80fb1674441661c127e7c4e0f5 (diff) | |
download | compiler-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.js | 3 |
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); |