diff options
author | jrv <jrv@138bc75d-0d04-0410-961f-82ee72b054a4> | 1992-08-28 01:22:01 +0000 |
---|---|---|
committer | jrv <jrv@138bc75d-0d04-0410-961f-82ee72b054a4> | 1992-08-28 01:22:01 +0000 |
commit | 914f028f12659bfd10fb60e4f0d7c4707f5ca06c (patch) | |
tree | c3f6c40961bdb27f62036a7b28a0b35fb2c308f5 /gcc/expr.h | |
parent | 0370c59727df6bb24051c5c31cb8ae630125281f (diff) | |
download | gcc-914f028f12659bfd10fb60e4f0d7c4707f5ca06c.tar.gz |
(sin_optab,cos_optab): Declare optabs for sin and cos.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@1977 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/expr.h')
-rw-r--r-- | gcc/expr.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gcc/expr.h b/gcc/expr.h index 6b6d9bf93ac..f7d704dbf7c 100644 --- a/gcc/expr.h +++ b/gcc/expr.h @@ -320,6 +320,8 @@ extern optab abs_optab; /* Abs value */ extern optab one_cmpl_optab; /* Bitwise not */ extern optab ffs_optab; /* Find first bit set */ extern optab sqrt_optab; /* Square root */ +extern optab sin_optab; /* Sine */ +extern optab cos_optab; /* Cosine */ extern optab strlen_optab; /* String length */ /* Passed to expand_binop and expand_unop to say which options to try to use |