src/share/vm/opto/connode.cpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File
*** old/src/share/vm/opto/connode.cpp	Mon Aug  4 14:31:47 2014
--- new/src/share/vm/opto/connode.cpp	Mon Aug  4 14:31:46 2014

*** 1,7 **** --- 1,7 ---- /* ! * Copyright (c) 1997, 2013, Oracle and/or its affiliates. All rights reserved. ! * Copyright (c) 1997, 2014, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation.
*** 41,51 **** --- 41,51 ---- uint ConNode::hash() const { return (uintptr_t)in(TypeFunc::Control) + _type->hash(); } //------------------------------make------------------------------------------- ! ConNode *ConNode::make( Compile* C, const Type *t ) { switch( t->basic_type() ) { case T_INT: return new ConINode( t->is_int() ); case T_LONG: return new ConLNode( t->is_long() ); case T_FLOAT: return new ConFNode( t->is_float_constant() ); case T_DOUBLE: return new ConDNode( t->is_double_constant() );

src/share/vm/opto/connode.cpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File