Filled in two missing values when dynamically making register info structs.

llvm-svn: 151742
This commit is contained in:
Greg Clayton 2012-02-29 19:27:27 +00:00
parent bee9839770
commit 435d85a2c2
1 changed files with 3 additions and 1 deletions

View File

@ -236,7 +236,9 @@ ProcessGDBRemote::BuildDynamicRegisterInfo (bool force)
LLDB_INVALID_REGNUM, // generic reg num
reg_num, // GDB reg num
reg_num // native register number
}
},
NULL,
NULL
};
while (response.GetNameColonValue(name, value))