Reviewers: Rodolph Perfetta, ulan,
Message:
Committed patchset #1 manually as r14296 (presubmit successful).
Description:
Unbreak ARM build.
[email protected],[email protected]
Committed: http://code.google.com/p/v8/source/detail?r=14296
Please review this at https://codereview.chromium.org/13996006/
SVN Base: https://v8.googlecode.com/svn/branches/bleeding_edge
Affected files:
M src/arm/assembler-arm.cc
Index: src/arm/assembler-arm.cc
diff --git a/src/arm/assembler-arm.cc b/src/arm/assembler-arm.cc
index
8c5eb036a20cde01548d35b306d333b9a9f2346a..bc21b6401778b778786c7edfdf4028a773c9c812
100644
--- a/src/arm/assembler-arm.cc
+++ b/src/arm/assembler-arm.cc
@@ -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);
}
--
--
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.