src/share/vm/shark/sharkContext.hpp

changeset 3045
a3142bdb6707
parent 2314
f95d63e2154a
child 4037
da91efe96a93
equal deleted inserted replaced
3044:4aa5974a06dd 3045:a3142bdb6707
169 private: 169 private:
170 const llvm::Type* map_type(const llvm::Type* const* table, 170 const llvm::Type* map_type(const llvm::Type* const* table,
171 BasicType type) const { 171 BasicType type) const {
172 assert(type >= 0 && type < T_CONFLICT, "unhandled type"); 172 assert(type >= 0 && type < T_CONFLICT, "unhandled type");
173 const llvm::Type* result = table[type]; 173 const llvm::Type* result = table[type];
174 assert(type != NULL, "unhandled type"); 174 assert(result != NULL, "unhandled type");
175 return result; 175 return result;
176 } 176 }
177 177
178 public: 178 public:
179 const llvm::Type* to_stackType(BasicType type) const { 179 const llvm::Type* to_stackType(BasicType type) const {

mercurial