diff options
author | midipix <writeonce@midipix.org> | 2019-03-10 04:38:37 -0400 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2019-03-12 02:53:37 -0400 |
commit | 767e87bde3f5dc89452b1e966dbf677ea61ae5cb (patch) | |
tree | 55d05fea4bd8e51717bb7bb34d0b9ae87481bb26 | |
parent | 5dc6f3c7fbc425bae506517985b28eefb0d39412 (diff) | |
download | cbb-gcc-4.6.4-767e87bde3f5dc89452b1e966dbf677ea61ae5cb.tar.bz2 cbb-gcc-4.6.4-767e87bde3f5dc89452b1e966dbf677ea61ae5cb.tar.xz |
build_personality_function(): added UI_SEH support.
-rw-r--r-- | gcc/expr.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gcc/expr.c b/gcc/expr.c index c9313969f..f4beb1082 100644 --- a/gcc/expr.c +++ b/gcc/expr.c @@ -10593,6 +10593,9 @@ build_personality_function (const char *lang) case UI_TARGET: unwind_and_version = "_v0"; break; + case UI_SEH: + unwind_and_version = "_seh0"; + break; default: gcc_unreachable (); } |