| CODENOTIFIER | HelpYou are not signed inSign in |
Project: OGG Vorbis
Revision: 14939
Author: msmith
Date: 22 May 2008 14:24:17
Changes:Only use the MSVC inline assembly if we're:
a) compiling with MSVC
b) not on win64, where inline assembly isn't implemented (!?)
| ... | ...@@ -116,7 +116,9 @@ | |
| 116 | 116 | #endif |
| 117 | 117 | |
| 118 | 118 | |
| 119 | #if defined(_WIN32) && !defined(__GNUC__) && !defined(__BORLANDC__) | |
| 119 | /* MSVC inline assembly. 32 bit only; inline ASM isn't implemented in the 64 bit | |
| 120 | * compiler */ | |
| 121 | #if defined(_MSC_VER) && !defined(_WIN64) | |
| 120 | 122 | # define VORBIS_FPU_CONTROL |
| 121 | 123 | |
| 122 | 124 | typedef ogg_int16_t vorbis_fpu_control; |