< prev index next >

src/hotspot/cpu/arm/assembler_arm.hpp

Print this page

        

@@ -74,11 +74,11 @@
 };
 #endif
 
 
 // ARM Addressing Modes 2 and 3 - Load and store
-class Address VALUE_OBJ_CLASS_SPEC {
+class Address {
  private:
   Register  _base;
   Register  _index;
   int       _disp;
   AsmOffset _mode;

@@ -332,11 +332,11 @@
   // constructor for Address.
   static Address make_raw(int base, int index, int scale, int disp, relocInfo::relocType disp_reloc);
 };
 
 #ifdef COMPILER2
-class VFP VALUE_OBJ_CLASS_SPEC {
+class VFP {
   // Helper classes to detect whether a floating point constant can be
   // encoded in a fconstd or fconsts instruction
   // The conversion from the imm8, 8 bit constant, to the floating
   // point value encoding is done with either:
   // for single precision: imm8<7>:NOT(imm8<6>):Replicate(imm8<6>,5):imm8<5:0>:Zeros(19)
< prev index next >