From 10851a1ddaea3e1111ea9f50afba1ff993a0967b Mon Sep 17 00:00:00 2001 From: Jeremy Rifkin <51220084+jeremy-rifkin@users.noreply.github.com> Date: Sun, 11 Jun 2023 17:00:53 -0400 Subject: LLVM IR pane improvements (#5078) This PR will add filtering and other output options to the LLVM IR pane ![image](https://github.com/compiler-explorer/compiler-explorer/assets/51220084/ffc865ea-b3fa-441f-b501-4ec4b68e261f) ![image](https://github.com/compiler-explorer/compiler-explorer/assets/51220084/936be326-b55e-40cd-ba47-22b121c1acfb) Closes #5062 Related to #5045 --- lib/compilers/java.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/compilers/java.ts') diff --git a/lib/compilers/java.ts b/lib/compilers/java.ts index 654aab039..320469f6e 100644 --- a/lib/compilers/java.ts +++ b/lib/compilers/java.ts @@ -237,7 +237,7 @@ export class JavaCompiler extends BaseCompiler { return this.filterUserOptionsWithArg(userOptions, oneArgForbiddenList); } - override processAsm(result) { + override async processAsm(result) { // Handle "error" documents. if (!result.asm.includes('\n') && result.asm[0] === '<') { return [{text: result.asm, source: null}]; -- cgit v1.2.3