aboutsummaryrefslogtreecommitdiff
path: root/gcc/common
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 /gcc/common
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
Diffstat (limited to 'gcc/common')
-rw-r--r--gcc/common/config/ia64/ia64-common.c4
1 files changed, 2 insertions, 2 deletions
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