* builds/vms/ftconfig.h: Synchronize.
Problem reported by Alexei.
This commit is contained in:
parent
35576bf067
commit
e98e2bc1aa
|
@ -1,3 +1,8 @@
|
||||||
|
2014-07-12 Werner Lemberg <wl@gnu.org>
|
||||||
|
|
||||||
|
* builds/vms/ftconfig.h: Synchronize.
|
||||||
|
Problem reported by Alexei.
|
||||||
|
|
||||||
2014-07-11 Alexei Podtelezhnikov <apodtele@gmail.com>
|
2014-07-11 Alexei Podtelezhnikov <apodtele@gmail.com>
|
||||||
|
|
||||||
[base] Clean up bitmap conversion.
|
[base] Clean up bitmap conversion.
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
/* */
|
/* */
|
||||||
/* VMS-specific configuration file (specification only). */
|
/* VMS-specific configuration file (specification only). */
|
||||||
/* */
|
/* */
|
||||||
/* Copyright 1996-2004, 2006-2008, 2011, 2013 by */
|
/* Copyright 1996-2004, 2006-2008, 2011, 2013, 2014 by */
|
||||||
/* David Turner, Robert Wilhelm, and Werner Lemberg. */
|
/* David Turner, Robert Wilhelm, and Werner Lemberg. */
|
||||||
/* */
|
/* */
|
||||||
/* This file is part of the FreeType project, and may only be used, */
|
/* This file is part of the FreeType project, and may only be used, */
|
||||||
|
@ -359,7 +359,11 @@ FT_BEGIN_HEADER
|
||||||
__asm__ __volatile__ (
|
__asm__ __volatile__ (
|
||||||
"smull %1, %2, %4, %3\n\t" /* (lo=%1,hi=%2) = a*b */
|
"smull %1, %2, %4, %3\n\t" /* (lo=%1,hi=%2) = a*b */
|
||||||
"mov %0, %2, asr #31\n\t" /* %0 = (hi >> 31) */
|
"mov %0, %2, asr #31\n\t" /* %0 = (hi >> 31) */
|
||||||
|
#if defined( __clang__ ) && defined( __thumb2__ )
|
||||||
|
"add.w %0, %0, #0x8000\n\t" /* %0 += 0x8000 */
|
||||||
|
#else
|
||||||
"add %0, %0, #0x8000\n\t" /* %0 += 0x8000 */
|
"add %0, %0, #0x8000\n\t" /* %0 += 0x8000 */
|
||||||
|
#endif
|
||||||
"adds %1, %1, %0\n\t" /* %1 += %0 */
|
"adds %1, %1, %0\n\t" /* %1 += %0 */
|
||||||
"adc %2, %2, #0\n\t" /* %2 += carry */
|
"adc %2, %2, #0\n\t" /* %2 += carry */
|
||||||
"mov %0, %1, lsr #16\n\t" /* %0 = %1 >> 16 */
|
"mov %0, %1, lsr #16\n\t" /* %0 = %1 >> 16 */
|
||||||
|
|
Loading…
Reference in New Issue