1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-01-31 20:51:52 +01:00

[ObjectYAML] Fixing a compiler warning

Accidentally re-defined the variable instead of setting it. Oops!

llvm-svn: 290388
This commit is contained in:
Chris Bieneman 2016-12-22 22:58:07 +00:00
parent eec78653c8
commit 2ae16a6e4c

View File

@ -134,7 +134,7 @@ void yaml2debug_info(raw_ostream &OS, const DWARFYAML::Data &DI) {
++FormVal, ++AbbrForm) {
dwarf::Form Form = AbbrForm->Form;
do {
bool Indirect = false;
Indirect = false;
switch (Form) {
case dwarf::DW_FORM_addr:
writeVariableSizedInteger(FormVal->Value, CU.AddrSize, OS,