Eric Pouech : dbghelp: Missing bits from previous patch about variables with constant values.

Alexandre Julliard julliard at wine.codeweavers.com
Mon Aug 7 13:15:01 CDT 2006


Module: wine
Branch: refs/heads/master
Commit: 5f4ac2499187eb81c5d04451c52d545657311e71
URL:    http://source.winehq.org/git/?p=wine.git;a=commit;h=5f4ac2499187eb81c5d04451c52d545657311e71

Author: Eric Pouech <eric.pouech at wanadoo.fr>
Date:   Sat Aug  5 13:50:53 2006 +0200

dbghelp: Missing bits from previous patch about variables with constant values.

---

 dlls/dbghelp/dwarf.c |    3 +--
 1 files changed, 1 insertions(+), 2 deletions(-)

diff --git a/dlls/dbghelp/dwarf.c b/dlls/dbghelp/dwarf.c
index a618986..e129d99 100644
--- a/dlls/dbghelp/dwarf.c
+++ b/dlls/dbghelp/dwarf.c
@@ -1059,7 +1059,6 @@ static void dwarf2_parse_variable(dwarf2
     dwarf2_find_name(subpgm->ctx, di, &name, "parameter");
     if (dwarf2_find_attribute(di, DW_AT_location, &loc) && loc.block)
     {
-        union attribute name;
         union attribute ext;
         long offset;
         int in_reg;
@@ -1096,7 +1095,7 @@ static void dwarf2_parse_variable(dwarf2
     }
     if (dwarf2_find_attribute(di, DW_AT_const_value, &value))
     {
-        FIXME("NIY (const value %08lx for %s\n", value.uvalue, name.string);
+        FIXME("NIY: const value %08lx for %s\n", value.uvalue, name.string);
     }
     if (is_pmt && subpgm->func && subpgm->func->type)
         symt_add_function_signature_parameter(subpgm->ctx->module,




More information about the wine-cvs mailing list