Unbreak ARM build.

TBR=rodolph.perfetta@gmail.com,ulan@chromium.org

Review URL: https://codereview.chromium.org/13996006

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@14296 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
This commit is contained in:
svenpanne@chromium.org 2013-04-17 06:43:15 +00:00
parent 627645fed7
commit 8b20471dbe

View File

@ -255,10 +255,13 @@ void CpuFeatures::PrintFeatures() {
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);
}