Commit fc85e1ad by Andrew Haley Committed by Tom Tromey

toplev.c (main): On an IA-64, make flag_unwind_tables defauit to true.

2000-06-29  Andrew Haley  <aph@cygnus.com>

	* toplev.c (main): On an IA-64, make flag_unwind_tables defauit
	to true.

From-SVN: r34784
parent aa936f1c
2000-06-29 Andrew Haley <aph@cygnus.com> 2000-06-29 Andrew Haley <aph@cygnus.com>
* toplev.c (main): On an IA-64, make flag_unwind_tables defauit
to true.
2000-06-29 Andrew Haley <aph@cygnus.com>
* config/ia64/linux.h (JMP_BUF_SIZE): Size is in Pmode units, not * config/ia64/linux.h (JMP_BUF_SIZE): Size is in Pmode units, not
bytes: remove the multiply by 8. bytes: remove the multiply by 8.
......
...@@ -4542,6 +4542,12 @@ main (argc, argv) ...@@ -4542,6 +4542,12 @@ main (argc, argv)
target_flags = 0; target_flags = 0;
set_target_switch (""); set_target_switch ("");
/* Unwind tables are always present in an ABI-conformant IA-64
object file, so the default should be ON. */
#ifdef IA64_UNWIND_INFO
flag_unwind_tables = IA64_UNWIND_INFO;
#endif
#ifdef OPTIMIZATION_OPTIONS #ifdef OPTIMIZATION_OPTIONS
/* Allow default optimizations to be specified on a per-machine basis. */ /* Allow default optimizations to be specified on a per-machine basis. */
OPTIMIZATION_OPTIONS (optimize, optimize_size); OPTIMIZATION_OPTIONS (optimize, optimize_size);
......
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