src/share/vm/shark/sharkContext.hpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File 7071823 Cdiff src/share/vm/shark/sharkContext.hpp

src/share/vm/shark/sharkContext.hpp

Print this page

        

*** 169,179 **** private: const llvm::Type* map_type(const llvm::Type* const* table, BasicType type) const { assert(type >= 0 && type < T_CONFLICT, "unhandled type"); const llvm::Type* result = table[type]; ! assert(type != NULL, "unhandled type"); return result; } public: const llvm::Type* to_stackType(BasicType type) const { --- 169,179 ---- private: const llvm::Type* map_type(const llvm::Type* const* table, BasicType type) const { assert(type >= 0 && type < T_CONFLICT, "unhandled type"); const llvm::Type* result = table[type]; ! assert(result != NULL, "unhandled type"); return result; } public: const llvm::Type* to_stackType(BasicType type) const {
src/share/vm/shark/sharkContext.hpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File