Ada: Fix intel filter active even for cross compilers (#3318)

The property was incorrectly hardcoded in the AdaCompiler class.
As GNAT does not have an argument-parser, we can't rely on autodetecting the
-masm support. The easiest way is to simply define the intelAsm property for
GNAT compilers known to support it.

Fixes #3310

Signed-off-by: Marc Poulhiès <dkm@kataplop.net>
This commit is contained in:
Marc Poulhiès
2022-02-03 00:24:45 +01:00
committed by GitHub
parent d883a0f3a1
commit ef74c3aa0e

View File

@@ -34,7 +34,6 @@ export class AdaCompiler extends BaseCompiler {
super(info, env);
this.compiler.supportsGccDump = true;
this.compiler.removeEmptyGccDump = true;
this.compiler.supportsIntel = true;
// used for all GNAT related panes (Expanded code, Tree)
this.compiler.supportsGnatDebugViews = true;