diff options
Diffstat (limited to 'Source')
| -rw-r--r-- | Source/WTF/wtf/Platform.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Source/WTF/wtf/Platform.h b/Source/WTF/wtf/Platform.h index 3a9b509f2..cddc21076 100644 --- a/Source/WTF/wtf/Platform.h +++ b/Source/WTF/wtf/Platform.h @@ -771,6 +771,11 @@ #define ENABLE_LLINT 0 #endif +/* LLINT on ARM depends on an FPU */ +#if !defined(ENABLE_LLINT) && CPU(ARM) && !CPU(ARM_HARDFP) +#define ENABLE_LLINT 0 +#endif + /* On some of the platforms where we have a JIT, we want to also have the low-level interpreter. */ #if !defined(ENABLE_LLINT) \ |
