diff options
author | 2008-09-29 04:30:40 +0000 | |
---|---|---|
committer | 2008-09-29 04:30:40 +0000 | |
commit | dbc00135b3fef43c5d475c48ddc557ec9af618ce (patch) | |
tree | dcd16de7b46bdb3bb46520cd961b880b58c55e38 | |
parent | account for data expansion due to emulation in AUDIO_GET{I,O}OFFS (diff) | |
download | wireguard-openbsd-dbc00135b3fef43c5d475c48ddc557ec9af618ce.tar.xz wireguard-openbsd-dbc00135b3fef43c5d475c48ddc557ec9af618ce.zip |
Add a -mno-ieee option to disable ieee mode; ok millert@
-rw-r--r-- | gnu/usr.bin/gcc/gcc/config/alpha/alpha.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gnu/usr.bin/gcc/gcc/config/alpha/alpha.h b/gnu/usr.bin/gcc/gcc/config/alpha/alpha.h index 82a23a27063..42e83d062b4 100644 --- a/gnu/usr.bin/gcc/gcc/config/alpha/alpha.h +++ b/gnu/usr.bin/gcc/gcc/config/alpha/alpha.h @@ -294,6 +294,8 @@ extern int alpha_tls_size; N_("Request IEEE-conformant math library routines (OSF/1)")}, \ {"ieee", MASK_IEEE|MASK_IEEE_CONFORMANT, \ N_("Emit IEEE-conformant code, without inexact exceptions")}, \ + {"no-ieee", - (MASK_IEEE|MASK_IEEE_WITH_INEXACT|MASK_IEEE_CONFORMANT), \ + N_("Emit non-IEEE-conformant code")}, \ {"ieee-with-inexact", MASK_IEEE_WITH_INEXACT|MASK_IEEE_CONFORMANT, \ N_("Emit IEEE-conformant code, with inexact exceptions")}, \ {"build-constants", MASK_BUILD_CONSTANTS, \ |