hotspot/src/share/vm/opto/memnode.hpp
changeset 13970 11a9630698a6
parent 13969 d2a189b83b87
child 13974 791cba24758f
--- a/hotspot/src/share/vm/opto/memnode.hpp	Tue Oct 09 10:11:38 2012 +0200
+++ b/hotspot/src/share/vm/opto/memnode.hpp	Tue Oct 09 12:40:05 2012 -0700
@@ -274,18 +274,6 @@
   virtual BasicType memory_type() const { return T_INT; }
 };
 
-//------------------------------LoadUI2LNode-----------------------------------
-// Load an unsigned integer into long from memory
-class LoadUI2LNode : public LoadNode {
-public:
-  LoadUI2LNode(Node* c, Node* mem, Node* adr, const TypePtr* at, const TypeLong* t = TypeLong::UINT)
-    : LoadNode(c, mem, adr, at, t) {}
-  virtual int Opcode() const;
-  virtual uint ideal_reg() const { return Op_RegL; }
-  virtual int store_Opcode() const { return Op_StoreL; }
-  virtual BasicType memory_type() const { return T_LONG; }
-};
-
 //------------------------------LoadRangeNode----------------------------------
 // Load an array length from the array
 class LoadRangeNode : public LoadINode {