diff options
author | cpopetz <cpopetz@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-01-25 17:25:26 +0000 |
---|---|---|
committer | cpopetz <cpopetz@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-01-25 17:25:26 +0000 |
commit | 13b7c373876229eb659596cebd9bf6c4336b0f02 (patch) | |
tree | b5e5e34cda845752495376408a725e04997ddcf1 /gcc/config/fp-bit.c | |
parent | 2fb24e48c957e9fe7d47b40824fa9f3d39d76fa2 (diff) | |
download | gcc-13b7c373876229eb659596cebd9bf6c4336b0f02.tar.gz |
* config/fp-bit.c (_unord_f2): Fix typo.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@31613 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/fp-bit.c')
-rw-r--r-- | gcc/config/fp-bit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/config/fp-bit.c b/gcc/config/fp-bit.c index fc496c0f059..8e9df1c848e 100644 --- a/gcc/config/fp-bit.c +++ b/gcc/config/fp-bit.c @@ -1388,7 +1388,7 @@ _unord_f2 (FLO_type arg_a, FLO_type arg_b) unpack_d (&au, &a); unpack_d (&bu, &b); - return (isnan (&a) || isnan (&b); + return (isnan (&a) || isnan (&b)); } #endif |