diff options
author | Mike Stump <mrs@gcc.gnu.org> | 1996-07-23 20:03:47 +0000 |
---|---|---|
committer | Mike Stump <mrs@gcc.gnu.org> | 1996-07-23 20:03:47 +0000 |
commit | 6adb4e3a29c612cc99a26a54364917e3a1709e8c (patch) | |
tree | d1acdc1258bb390e198f2a31596603f8e267eacf /gcc/optabs.c | |
parent | 3d1953912dca5809d9e37fccd9ee606d5b637dc4 (diff) | |
download | gcc-6adb4e3a29c612cc99a26a54364917e3a1709e8c.zip gcc-6adb4e3a29c612cc99a26a54364917e3a1709e8c.tar.gz gcc-6adb4e3a29c612cc99a26a54364917e3a1709e8c.tar.bz2 |
install EH code
From-SVN: r12549
Diffstat (limited to 'gcc/optabs.c')
-rw-r--r-- | gcc/optabs.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gcc/optabs.c b/gcc/optabs.c index a308197..ba4b72f 100644 --- a/gcc/optabs.c +++ b/gcc/optabs.c @@ -118,6 +118,8 @@ rtx bcmp_libfunc; rtx memset_libfunc; rtx bzero_libfunc; +rtx throw_libfunc; + rtx eqhf2_libfunc; rtx nehf2_libfunc; rtx gthf2_libfunc; @@ -4247,6 +4249,8 @@ init_optabs () memset_libfunc = gen_rtx (SYMBOL_REF, Pmode, "memset"); bzero_libfunc = gen_rtx (SYMBOL_REF, Pmode, "bzero"); + throw_libfunc = gen_rtx (SYMBOL_REF, Pmode, "__throw"); + eqhf2_libfunc = gen_rtx (SYMBOL_REF, Pmode, "__eqhf2"); nehf2_libfunc = gen_rtx (SYMBOL_REF, Pmode, "__nehf2"); gthf2_libfunc = gen_rtx (SYMBOL_REF, Pmode, "__gthf2"); |