comparison src/share/vm/ci/ciType.hpp @ 7643:3ac7d10a6572

Merge with hsx25/hotspot.
author Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
date Thu, 31 Jan 2013 15:42:25 +0100
parents f1de9dbc914e
children de6a9e811145
comparison
equal deleted inserted replaced
7573:17b6a63fe7c2 7643:3ac7d10a6572
75 75
76 // What kind of ciObject is this? 76 // What kind of ciObject is this?
77 bool is_type() const { return true; } 77 bool is_type() const { return true; }
78 bool is_classless() const { return is_primitive_type(); } 78 bool is_classless() const { return is_primitive_type(); }
79 79
80 const char* name();
80 virtual void print_name_on(outputStream* st); 81 virtual void print_name_on(outputStream* st);
81 void print_name() { 82 void print_name() {
82 print_name_on(tty); 83 print_name_on(tty);
83 } 84 }
84 85