Changeset 915


Ignore:
Timestamp:
Sep 8, 2011, 12:21:32 AM (12 years ago)
Author:
sam
Message:

core: mediocre workaround for mingw32 who ignores our FP_USE macro.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/core.h

    r909 r915  
    3434#   elif defined __x86_64__
    3535#      define FP_USE(x) __asm__("" : "+x" (x))
     36#   elif defined _WIN32 /* FIXME: this isn't good */
     37#      define FP_USE(x) __asm__("" : "+m" (x))
    3638#   elif defined __i386__
    3739#      define FP_USE(x) __asm__("" : "+t" (x))
Note: See TracChangeset for help on using the changeset viewer.