Commit 7405f03c by Geoffrey Keating Committed by Geoffrey Keating

* config/i386/darwin.h (DBX_REGISTER_NUMBER): Define.

From-SVN: r110865
parent 01df94d4
2006-02-10 Geoffrey Keating <geoffk@apple.com>
* config/i386/darwin.h (DBX_REGISTER_NUMBER): Define.
2006-02-10 Diego Novillo <dnovillo@redhat.com>
* tree-inline.c (estimate_num_insns_1): Make OpenMP directives
......
......@@ -152,3 +152,13 @@ extern void darwin_x86_file_end (void);
} \
else fprintf (FILE, "\tcall mcount\n"); \
} while (0)
/* Darwin uses the standard DWARF register numbers but the default
register numbers for STABS. Fortunately for 64-bit code the
default and the standard are the same. */
#undef DBX_REGISTER_NUMBER
#define DBX_REGISTER_NUMBER(n) (TARGET_64BIT \
? dbx64_register_map[n] \
: write_symbols == DWARF2_DEBUG \
? svr4_dbx_register_map[n] \
: dbx_register_map[n])
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