Skip to content

Commit

Permalink
Only use x86-assembly when explicitly on x86
Browse files Browse the repository at this point in the history
  • Loading branch information
janisozaur committed Nov 13, 2019
1 parent 043d37b commit e8061cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libfaad/common.h
Original file line number Diff line number Diff line change
Expand Up @@ -313,7 +313,7 @@ char *strchr(), *strrchr();
}


#if defined(_WIN32) && !defined(_WIN64) && !defined(__MINGW32__)
#if defined(_WIN32) && defined(_M_IX86) && !defined(__MINGW32__)
#ifndef HAVE_LRINTF
#define HAS_LRINTF
static INLINE int lrintf(float f)
Expand Down

0 comments on commit e8061cf

Please sign in to comment.