src/share/vm/shark/sharkValue.cpp

changeset 4314
2cd5e15048e6
parent 2314
f95d63e2154a
child 6876
710a3c8b516e
     1.1 --- a/src/share/vm/shark/sharkValue.cpp	Mon Nov 26 17:25:11 2012 -0800
     1.2 +++ b/src/share/vm/shark/sharkValue.cpp	Tue Nov 27 12:48:52 2012 -0800
     1.3 @@ -233,7 +233,7 @@
     1.4    assert(type() == other->type(), "should be");
     1.5    assert(zero_checked() == other->zero_checked(), "should be");
     1.6  
     1.7 -  PHINode *phi = builder->CreatePHI(SharkType::to_stackType(type()), name);
     1.8 +  PHINode *phi = builder->CreatePHI(SharkType::to_stackType(type()), 0, name);
     1.9    phi->addIncoming(this->generic_value(), this_block);
    1.10    phi->addIncoming(other->generic_value(), other_block);
    1.11    return SharkValue::create_generic(type(), phi, zero_checked());

mercurial