Commit 8588f797 by Alexandre Oliva Committed by Alexandre Oliva

* df-core.c (df_ref_debug): Honor -fdump-noaddr.

From-SVN: r148076
parent 45f39d78
2009-06-02 Alexandre Oliva <aoliva@redhat.com>
* df-core.c (df_ref_debug): Honor -fdump-noaddr.
2009-06-02 Alexandre Oliva <aoliva@redhat.com>
* combine.c (move_deaths): Compare LUIDs within the same BB only.
2009-06-02 Alexandre Oliva <aoliva@redhat.com>
......
......@@ -2120,7 +2120,13 @@ df_ref_debug (df_ref ref, FILE *file)
DF_REF_FLAGS (ref),
DF_REF_TYPE (ref));
if (DF_REF_LOC (ref))
fprintf (file, "loc %p(%p) chain ", (void *)DF_REF_LOC (ref), (void *)*DF_REF_LOC (ref));
{
if (flag_dump_noaddr)
fprintf (file, "loc #(#) chain ");
else
fprintf (file, "loc %p(%p) chain ", (void *)DF_REF_LOC (ref),
(void *)*DF_REF_LOC (ref));
}
else
fprintf (file, "chain ");
df_chain_dump (DF_REF_CHAIN (ref), file);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment