comparison src/share/vm/ci/ciObjArray.hpp @ 17:ff5961f4c095

6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long) Reviewed-by: kvn, rasbold
author never
date Wed, 05 Dec 2007 09:01:00 -0800
parents a61af66fc99e
children c18cbe5936b8
comparison
equal deleted inserted replaced
16:f8236e79048a 17:ff5961f4c095
41 const char* type_string() { return "ciObjArray"; } 41 const char* type_string() { return "ciObjArray"; }
42 42
43 public: 43 public:
44 // What kind of ciObject is this? 44 // What kind of ciObject is this?
45 bool is_obj_array() { return true; } 45 bool is_obj_array() { return true; }
46
47 ciObject* obj_at(int index);
46 }; 48 };