diff options
author | DRC <dcommander@users.sourceforge.net> | 2009-10-08 09:04:56 +0000 |
---|---|---|
committer | DRC <dcommander@users.sourceforge.net> | 2009-10-08 09:04:56 +0000 |
commit | 4eca36021acc9d71652a850e906a2cedcd4c9b93 (patch) | |
tree | 4f62250e27666dc985a69d82a2970801f601a896 /common/jpeg/simd/jcsamss2.asm | |
parent | 21a5cc838eb74b3b3710db0078ef317f9a835c13 (diff) | |
download | tigervnc-4eca36021acc9d71652a850e906a2cedcd4c9b93.tar.gz tigervnc-4eca36021acc9d71652a850e906a2cedcd4c9b93.zip |
Work around alignment issue with OS X linker which was causing problems on Leopard and Snow Leopard
git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@3910 3789f03b-4d11-0410-bbf8-ca57d06f2519
Diffstat (limited to 'common/jpeg/simd/jcsamss2.asm')
-rw-r--r-- | common/jpeg/simd/jcsamss2.asm | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/common/jpeg/simd/jcsamss2.asm b/common/jpeg/simd/jcsamss2.asm index 98e97da4..818e911d 100644 --- a/common/jpeg/simd/jcsamss2.asm +++ b/common/jpeg/simd/jcsamss2.asm @@ -346,3 +346,6 @@ EXTN(jsimd_h2v2_downsample_sse2): pop ebp ret +; For some reason, the OS X linker does not honor the request to align the +; segment unless we do this. + align 16 |