diff options
Diffstat (limited to 'otherlibs/num/bng_arm64.c')
-rw-r--r-- | otherlibs/num/bng_arm64.c | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/otherlibs/num/bng_arm64.c b/otherlibs/num/bng_arm64.c deleted file mode 100644 index b900b803b1..0000000000 --- a/otherlibs/num/bng_arm64.c +++ /dev/null @@ -1,22 +0,0 @@ -/**************************************************************************/ -/* */ -/* OCaml */ -/* */ -/* Xavier Leroy, projet Gallium, INRIA Rocquencourt */ -/* */ -/* Copyright 2013 Institut National de Recherche en Informatique et */ -/* en Automatique. */ -/* */ -/* All rights reserved. This file is distributed under the terms of */ -/* the GNU Lesser General Public License version 2.1, with the */ -/* special exception on linking described in the file LICENSE. */ -/* */ -/**************************************************************************/ - -/* Code specific for the ARM 64 (AArch64) architecture */ - -#define BngMult(resh,resl,arg1,arg2) \ - asm("mul %0, %2, %3 \n\t" \ - "umulh %1, %2, %3" \ - : "=&r" (resl), "=&r" (resh) \ - : "r" (arg1), "r" (arg2)) |