Skip to content

Commit

Permalink
Sulong: take out compilation final that should not be there.
Browse files Browse the repository at this point in the history
  • Loading branch information
Palez committed Feb 3, 2021
1 parent 8f060b2 commit 7a4a424
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ public final class LLVMFunction extends LLVMSymbol {
private final Function function;
private final String path;
private LLVMSourceLocation sourceLocation;
@CompilationFinal private String originalName;
private String originalName;

private final Assumption fixedCodeAssumption = Truffle.getRuntime().createAssumption();
@CompilationFinal private LLVMFunctionCode fixedCode;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2018, 2020, Oracle and/or its affiliates.
* Copyright (c) 2018, 2021, Oracle and/or its affiliates.
*
* All rights reserved.
*
Expand Down Expand Up @@ -47,13 +47,13 @@ public final class LLVMDebuggerScopeEntries extends LLVMDebuggerValue {

static final LLVMDebuggerScopeEntries EMPTY_SCOPE = new LLVMDebuggerScopeEntries();

@CompilerDirectives.CompilationFinal private LLVMDebuggerScopeEntries parentScope;
private LLVMDebuggerScopeEntries parentScope;
private final ArrayList<String> flattenedScopeEntries;
private final Map<String, Object> flattenedScopeMap;

private final Map<String, Object> entries;
@CompilerDirectives.CompilationFinal private String scopeName;
@CompilerDirectives.CompilationFinal private boolean isScopeFlattened;
private String scopeName;
private boolean isScopeFlattened;

LLVMDebuggerScopeEntries() {
this.entries = new HashMap<>();
Expand Down

0 comments on commit 7a4a424

Please sign in to comment.