Revision: 14296
Author: [email protected]
Date: Tue Apr 16 23:43:15 2013
Log: Unbreak ARM build.
[email protected],[email protected]
Review URL: https://codereview.chromium.org/13996006
http://code.google.com/p/v8/source/detail?r=14296
Modified:
/branches/bleeding_edge/src/arm/assembler-arm.cc
=======================================
--- /branches/bleeding_edge/src/arm/assembler-arm.cc Tue Apr 16 07:39:48
2013
+++ /branches/bleeding_edge/src/arm/assembler-arm.cc Tue Apr 16 23:43:15
2013
@@ -255,10 +255,13 @@
CpuFeatures::IsSupported(UNALIGNED_ACCESSES),
CpuFeatures::IsSupported(MOVW_MOVT_IMMEDIATE_LOADS));
#ifdef __arm__
- printf(" USE_EABI_HARDFLOAT=%d\n", OS::ArmUsingHardFloat());
+ bool eabi_hardfloat = OS::ArmUsingHardFloat();
+#elif USE_EABI_HARDFLOAT
+ bool eabi_hardfloat = true;
#else
- printf(" USE_EABI_HARDFLOAT=%d\n", USE_EABI_HARDFLOAT);
+ bool eabi_hardfloat = false;
#endif
+ printf(" USE_EABI_HARDFLOAT=%d\n", eabi_hardfloat);
}
--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
---
You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.