This is the mail archive of the libffi-discuss@sourceware.org mailing list for the libffi project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: patch for windows CE/Mobile arm


On 10/11/2011 9:47 AM, Timothy Wall wrote:
wce/wme has maximum alignment of 4 bytes.


Thanks, I applied this with a minor tweak.


Your patch has...

       if (alignment < 4)
 	alignment = 4;
+#ifdef _WIN32_WCE
+      if (alignment > 4)
+        alignment = 4;
+#endif

I added an "else" immediately after #ifdef _WIN32_WCE.

Thanks,

AG


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]