gallium: Drop deprecated __MSC__ macro.

This commit is contained in:
José Fonseca
2008-06-24 13:56:41 +09:00
parent 0d94767430
commit e8b52b3f56
3 changed files with 10 additions and 15 deletions

View File

@@ -224,7 +224,7 @@ static INLINE int align_int(int x, int align)
#if defined(__MSC__) && defined(__WIN32__)
#if defined(PIPE_CC_MSVC) && defined(PIPE_ARCH_X86)
static INLINE unsigned ffs( unsigned u )
{
unsigned i;
@@ -341,14 +341,14 @@ static INLINE int ifloor(float f)
}
#if defined(__GNUC__) && defined(__i386__)
#if defined(PIPE_CC_GCC) && defined(PIPE_ARCH_X86)
static INLINE int iround(float f)
{
int r;
__asm__ ("fistpl %0" : "=m" (r) : "t" (f) : "st");
return r;
}
#elif defined(__MSC__) && defined(__WIN32__)
#elif defined(PIPE_CC_MSVC) && defined(PIPE_ARCH_X86)
static INLINE int iround(float f)
{
int r;