Revision: 9839
Author:   [email protected]
Date:     Mon Oct 31 03:38:36 2011
Log: Fixing compile warnings for newer GCC versions due to unused variables.

BUG=v8:1794, dart:162
http://code.google.com/p/v8/source/detail?r=9839

Modified:
 /branches/3.4/src/ia32/lithium-codegen-ia32.cc
 /branches/3.4/src/version.cc
 /branches/3.4/src/x64/lithium-codegen-x64.cc

=======================================
--- /branches/3.4/src/ia32/lithium-codegen-ia32.cc      Wed Jul 20 06:44:42 2011
+++ /branches/3.4/src/ia32/lithium-codegen-ia32.cc      Mon Oct 31 03:38:36 2011
@@ -2232,7 +2232,6 @@

 void LCodeGen::DoLoadKeyedFastDoubleElement(
     LLoadKeyedFastDoubleElement* instr) {
-  Register elements = ToRegister(instr->elements());
   XMMRegister result = ToDoubleRegister(instr->result());

   if (instr->hydrogen()->RequiresHoleCheck()) {
@@ -3097,8 +3096,6 @@
 void LCodeGen::DoStoreKeyedFastDoubleElement(
     LStoreKeyedFastDoubleElement* instr) {
   XMMRegister value = ToDoubleRegister(instr->value());
-  Register elements = ToRegister(instr->elements());
- Register key = instr->key()->IsRegister() ? ToRegister(instr->key()) : no_reg;
   Label have_value;

   __ ucomisd(value, value);
=======================================
--- /branches/3.4/src/version.cc        Wed Oct 26 04:48:42 2011
+++ /branches/3.4/src/version.cc        Mon Oct 31 03:38:36 2011
@@ -35,7 +35,7 @@
 #define MAJOR_VERSION     3
 #define MINOR_VERSION     4
 #define BUILD_NUMBER      14
-#define PATCH_LEVEL       34
+#define PATCH_LEVEL       35
 // Use 1 for candidates and 0 otherwise.
 // (Boolean macro values are not supported by all preprocessors.)
 #define IS_CANDIDATE_VERSION 0
=======================================
--- /branches/3.4/src/x64/lithium-codegen-x64.cc        Wed Jul 20 06:44:42 2011
+++ /branches/3.4/src/x64/lithium-codegen-x64.cc        Mon Oct 31 03:38:36 2011
@@ -2246,7 +2246,6 @@

 void LCodeGen::DoLoadKeyedFastDoubleElement(
     LLoadKeyedFastDoubleElement* instr) {
-  Register elements = ToRegister(instr->elements());
   XMMRegister result(ToDoubleRegister(instr->result()));

   if (instr->hydrogen()->RequiresHoleCheck()) {
@@ -3101,7 +3100,6 @@
 void LCodeGen::DoStoreKeyedFastDoubleElement(
     LStoreKeyedFastDoubleElement* instr) {
   XMMRegister value = ToDoubleRegister(instr->value());
-  Register elements = ToRegister(instr->elements());
   Label have_value;

   __ ucomisd(value, value);

--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev

Reply via email to