comparison src/share/vm/ci/ciType.hpp @ 7604:f1de9dbc914e

8006109: test/java/util/AbstractSequentialList/AddAll.java fails: assert(rtype == ctype) failed: mismatched return types Reviewed-by: kvn
author twisti
date Tue, 15 Jan 2013 12:06:18 -0800
parents da91efe96a93
children de6a9e811145
comparison
equal deleted inserted replaced
7603:d92fa52a5d03 7604:f1de9dbc914e
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