shithub: freetype+ttf2subf

Download patch

ref: fec113d7245b98631b8bded8be20aa1dc1d3991a
parent: b6978dd0c949aedbaa1773724e19fec47a34a29c
author: Dave Thomas <[email protected]>
date: Sat Jul 7 06:57:30 EDT 2012

[ARM] Fix FT_MulFix_arm.

* include/freetype/config/ftconfig.h (FT_MulFix_arm) [__arm__]:
Avoid ADDS instruction to clobber condition codes.

git/fs: mount .git/fs: mount/attach disallowed
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2012-07-07  Dave Thomas  <[email protected]>
+
+	[ARM] Fix FT_MulFix_arm.
+
+	* include/freetype/config/ftconfig.h (FT_MulFix_arm) [__arm__]:
+	Avoid ADDS instruction to clobber condition codes.
+
 2012-07-06  Werner Lemberg  <[email protected]>
 
 	[autofit] Do some code cleanup.
--- a/include/freetype/config/ftconfig.h
+++ b/include/freetype/config/ftconfig.h
@@ -355,7 +355,8 @@
       "mov    %0, %1, lsr #16\n\t"      /* %0  = %1 >> 16 */
       "orr    %0, %0, %2, lsl #16\n\t"  /* %0 |= %2 << 16 */
       : "=r"(a), "=&r"(t2), "=&r"(t)
-      : "r"(a), "r"(b) );
+      : "r"(a), "r"(b)
+      : "cc" );
     return a;
   }