Index: src/mips/codegen-mips.h |
diff --git a/src/mips/codegen-mips.h b/src/mips/codegen-mips.h |
index f847b51c650f373cc6b64d4da0c5feee9348db1d..fecd321fad481b03e7f91d7dd012657b3dd0450e 100644 |
--- a/src/mips/codegen-mips.h |
+++ b/src/mips/codegen-mips.h |
@@ -37,18 +37,6 @@ |
namespace v8 { |
namespace internal { |
-#if(defined(__mips_hard_float) && __mips_hard_float != 0) |
-// Use floating-point coprocessor instructions. This flag is raised when |
-// -mhard-float is passed to the compiler. |
-static const bool IsMipsSoftFloatABI = false; |
-#elif(defined(__mips_soft_float) && __mips_soft_float != 0) |
-// Not using floating-point coprocessor instructions. This flag is raised when |
-// -msoft-float is passed to the compiler. |
-static const bool IsMipsSoftFloatABI = true; |
-#else |
-static const bool IsMipsSoftFloatABI = true; |
-#endif |
- |
// Forward declarations |
class CompilationInfo; |