summaryrefslogtreecommitdiff
path: root/compiler/options.pas
diff options
context:
space:
mode:
authorjonas <jonas@3ad0048d-3df7-0310-abae-a5850022a9f2>2015-02-23 22:57:02 +0000
committerjonas <jonas@3ad0048d-3df7-0310-abae-a5850022a9f2>2015-02-23 22:57:02 +0000
commit83744e2c4a5c38c9974f6c24a237d67181109629 (patch)
treec0184897c132bfacf731e9a3a8b7e0cbecf4ca86 /compiler/options.pas
parentd8a86199af2c1affdaf0deec0ad34deab8150a0d (diff)
downloadfpc-83744e2c4a5c38c9974f6c24a237d67181109629.tar.gz
+ AArch64 internal bsf/bsr support
git-svn-id: http://svn.freepascal.org/svn/fpc/trunk@29979 3ad0048d-3df7-0310-abae-a5850022a9f2
Diffstat (limited to 'compiler/options.pas')
-rw-r--r--compiler/options.pas2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/options.pas b/compiler/options.pas
index 9e6828332e..6b314889b7 100644
--- a/compiler/options.pas
+++ b/compiler/options.pas
@@ -3839,7 +3839,7 @@ if (target_info.abi = abi_eabihf) then
{$endif ARM}
{ inline bsf/bsr implementation }
-{$if defined(i386) or defined(x86_64)}
+{$if defined(i386) or defined(x86_64) or defined(aarch64)}
def_system_macro('FPC_HAS_INTERNAL_BSF');
def_system_macro('FPC_HAS_INTERNAL_BSR');
{$endif}