aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTristan Gingold <gingold@adacore.com>2012-05-25 08:47:07 +0000
committerTristan Gingold <gingold@gcc.gnu.org>2012-05-25 08:47:07 +0000
commitd656c9c5bde6a4c48b10861c9d5e3a2542396279 (patch)
tree666b8393215b4733ed708a48e67db8e51ea55fce
parentc57685107c297b07a00f5a19fe0d475f7865881d (diff)
downloadgcc-d656c9c5bde6a4c48b10861c9d5e3a2542396279.zip
gcc-d656c9c5bde6a4c48b10861c9d5e3a2542396279.tar.gz
gcc-d656c9c5bde6a4c48b10861c9d5e3a2542396279.tar.bz2
ia64-common.c (ia64_except_unwind_info): Fix typo.
2012-05-25 Tristan Gingold <gingold@adacore.com> * common/config/ia64/ia64-common.c (ia64_except_unwind_info): Fix typo. From-SVN: r187872
-rw-r--r--gcc/ChangeLog4
-rw-r--r--gcc/common/config/ia64/ia64-common.c4
2 files changed, 6 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 983cd323..dff80d6 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,7 @@
+2012-05-25 Tristan Gingold <gingold@adacore.com>
+
+ * common/config/ia64/ia64-common.c (ia64_except_unwind_info): Fix typo.
+
2012-05-25 Thomas Schwinge <thomas@codesourcery.com>
* fold-const.c (optimize_bit_field_compare): Abort early in the strict
diff --git a/gcc/common/config/ia64/ia64-common.c b/gcc/common/config/ia64/ia64-common.c
index 1168253..79aed6a 100644
--- a/gcc/common/config/ia64/ia64-common.c
+++ b/gcc/common/config/ia64/ia64-common.c
@@ -71,8 +71,8 @@ enum unwind_info_type
ia64_except_unwind_info (struct gcc_options *opts)
{
/* Honor the --enable-sjlj-exceptions configure switch. */
-#ifdef CONFIG_UNWIND_EXCEPTIONS
- if (CONFIG_UNWIND_EXCEPTIONS)
+#ifdef CONFIG_SJLJ_EXCEPTIONS
+ if (CONFIG_SJLJ_EXCEPTIONS)
return UI_SJLJ;
#endif