Revision: 6273
Author: [email protected]
Date: Tue Jan 11 06:38:13 2011
Log: Remove unused Temp() function form LChunkBuilder.

Review URL: http://codereview.chromium.org/6217003
http://code.google.com/p/v8/source/detail?r=6273

Modified:
 /branches/bleeding_edge/src/arm/lithium-arm.cc
 /branches/bleeding_edge/src/arm/lithium-arm.h
 /branches/bleeding_edge/src/ia32/lithium-ia32.cc
 /branches/bleeding_edge/src/ia32/lithium-ia32.h

=======================================
--- /branches/bleeding_edge/src/arm/lithium-arm.cc      Tue Jan 11 06:01:53 2011
+++ /branches/bleeding_edge/src/arm/lithium-arm.cc      Tue Jan 11 06:38:13 2011
@@ -674,13 +674,6 @@
   instr->set_result(result);
   return instr;
 }
-
-
-LOperand* LChunkBuilder::Temp() {
-  LUnallocated* operand = new LUnallocated(LUnallocated::NONE);
-  allocator_->RecordTemporary(operand);
-  return operand;
-}


 LUnallocated* LChunkBuilder::TempRegister() {
=======================================
--- /branches/bleeding_edge/src/arm/lithium-arm.h       Tue Jan 11 06:01:53 2011
+++ /branches/bleeding_edge/src/arm/lithium-arm.h       Tue Jan 11 06:38:13 2011
@@ -2014,8 +2014,6 @@

   LEnvironment* CreateEnvironment(HEnvironment* hydrogen_env);

-  // Temporary operand that may be a memory location.
-  LOperand* Temp();
   // Temporary operand that must be in a register.
   LUnallocated* TempRegister();
   LOperand* FixedTemp(Register reg);
=======================================
--- /branches/bleeding_edge/src/ia32/lithium-ia32.cc Tue Jan 11 05:48:49 2011 +++ /branches/bleeding_edge/src/ia32/lithium-ia32.cc Tue Jan 11 06:38:13 2011
@@ -675,13 +675,6 @@
   instr->set_result(result);
   return instr;
 }
-
-
-LOperand* LChunkBuilder::Temp() {
-  LUnallocated* operand = new LUnallocated(LUnallocated::NONE);
-  allocator_->RecordTemporary(operand);
-  return operand;
-}


 LUnallocated* LChunkBuilder::TempRegister() {
=======================================
--- /branches/bleeding_edge/src/ia32/lithium-ia32.h     Tue Jan 11 06:01:53 2011
+++ /branches/bleeding_edge/src/ia32/lithium-ia32.h     Tue Jan 11 06:38:13 2011
@@ -2084,8 +2084,6 @@

   LEnvironment* CreateEnvironment(HEnvironment* hydrogen_env);

-  // Temporary operand that may be a memory location.
-  LOperand* Temp();
   // Temporary operand that must be in a register.
   LUnallocated* TempRegister();
   LOperand* FixedTemp(Register reg);

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

Reply via email to