1 2 3 4 5 6 7 8 9 10 11 12 13
|
# DP: fixes an uninitialized memory issue in adlc
Index: b/src/hotspot/share/adlc/formsopt.cpp
===================================================================
--- a/src/hotspot/share/adlc/formsopt.cpp
+++ b/src/hotspot/share/adlc/formsopt.cpp
@@ -439,6 +439,7 @@ FrameForm::FrameForm() {
_return_value = NULL;
_c_return_value = NULL;
_interpreter_frame_pointer_reg = NULL;
+ _cisc_spilling_operand_name = NULL;
}
FrameForm::~FrameForm() {
|