[Bug debug/39379] New: [4.4 Regression] DW_TAG_imported* no longer emitted

jakub at gcc dot gnu dot org gcc-bugzilla@gcc.gnu.org
Thu Mar 5 08:56:00 GMT 2009


// { dg-do compile }
// { dg-options "-g -dA" }
// { dg-final { scan-assembler "DW_TAG_imported" }  }

namespace A
{
  int v;
}

int
f ()
{
  int i;
  {
    using namespace A;
    v++;
    i = v - 1;
  }
  return i;
}

int
main ()
{
  using namespace A;
  v++;
  return v - 1;
}

no longer emits any DW_TAG_imported* tags, regression from 4.3.x.


-- 
           Summary: [4.4 Regression] DW_TAG_imported* no longer emitted
           Product: gcc
           Version: 4.4.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: debug
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: jakub at gcc dot gnu dot org


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=39379



More information about the Gcc-bugs mailing list