src/share/vm/opto/node.cpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File
*** old/src/share/vm/opto/node.cpp	Wed Sep 16 15:18:50 2015
--- new/src/share/vm/opto/node.cpp	Wed Sep 16 15:18:50 2015

*** 45,54 **** --- 45,58 ---- const uint Node::NotAMachineReg = 0xffff0000; #ifndef PRODUCT extern int nodes_created; #endif + #ifdef __clang__ + #pragma clang diagnostic push + #pragma GCC diagnostic ignored "-Wuninitialized" + #endif #ifdef ASSERT //-------------------------- construct_node------------------------------------ // Set a breakpoint here to identify where a particular node index is built.
*** 454,463 **** --- 458,471 ---- _in[4] = n4; if (n4 != NULL) n4->add_out((Node *)this); _in[5] = n5; if (n5 != NULL) n5->add_out((Node *)this); _in[6] = n6; if (n6 != NULL) n6->add_out((Node *)this); } + #ifdef __clang__ + #pragma clang diagnostic pop + #endif + //------------------------------clone------------------------------------------ // Clone a Node. Node *Node::clone() const { Compile* C = Compile::current();

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