stray console logs

This commit is contained in:
partouf
2022-08-25 23:59:14 +02:00
parent 54c9cfdbf8
commit 223cd8f5e2
2 changed files with 0 additions and 2 deletions

View File

@@ -1644,7 +1644,6 @@ Compiler.prototype.onLLVMOptPipelineViewClosed = function (id) {
Compiler.prototype.onLLVMOptPipelineViewOptionsUpdated = function (id, options, recompile) {
if (this.id === id) {
console.log(options);
this.llvmOptPipelineOptions = options;
if (recompile) {
this.compile();

View File

@@ -263,7 +263,6 @@ export class GccDump extends MonacoPane<monaco.editor.IStandaloneCodeEditor, Gcc
onPassSelect(passId: string) {
const selectedPass = this.selectize.options[passId] as unknown as any;
console.log(selectedPass);
if (this.inhibitPassSelect !== true) {
this.eventHub.emit('gccDumpPassSelected', this.compilerInfo.compilerId, selectedPass, true);