diff options
author | Chandrakala Chavva <cchavva@redhat.com> | 2000-10-19 11:48:22 -0400 |
---|---|---|
committer | Chandra Chavva <cchavva@gcc.gnu.org> | 2000-10-19 11:48:22 -0400 |
commit | e6b4d09dda5ac70d672a8c61fb864dd21a20d9f9 (patch) | |
tree | 090a8fbf2232eed6b3661b31571dd43b13d58a84 /gcc | |
parent | 3d2adde6dc2a46c1d04ebe51f74e960acf4dfc77 (diff) | |
download | gcc-e6b4d09dda5ac70d672a8c61fb864dd21a20d9f9.zip gcc-e6b4d09dda5ac70d672a8c61fb864dd21a20d9f9.tar.gz gcc-e6b4d09dda5ac70d672a8c61fb864dd21a20d9f9.tar.bz2 |
Minor corrections in comments.
From-SVN: r36951
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/expmed.c | 7 |
2 files changed, 8 insertions, 4 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 1ba7430..80e06b3 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,10 @@ 2000-10-19 Chandrakala Chavva <cchavva@redhat.com> + * expmed.c: Minor corrections in comments. + * invoke.texi: Added desciption for the new option -ftrapv. + +2000-10-19 Chandrakala Chavva <cchavva@redhat.com> + * libgcc2.c: Added the missing #endif. Thu Oct 19 14:25:11 MET DST 2000 Jan Hubicka <jh@suse.cz> diff --git a/gcc/expmed.c b/gcc/expmed.c index bdd9fa7..2605062 100644 --- a/gcc/expmed.c +++ b/gcc/expmed.c @@ -4492,10 +4492,9 @@ emit_store_flag (target, code, op0, op1, mode, unsignedp, normalizep) we can use zero-extension to the wider mode (an unsigned conversion) as the operation. */ - /* CYGNUS LOCAL - amylaar/-ftrapv: Note that ABS doesn't yield a - positive number for INT_MIN, but that is compensated by the - subsequent overflow when subtracting one / negating. - END CYGNUS LOCAL */ + /* Note that ABS doesn't yield a positive number for INT_MIN, but + that is compensated by the subsequent overflow when subtracting + one / negating. */ if (abs_optab->handlers[(int) mode].insn_code != CODE_FOR_nothing) tem = expand_unop (mode, abs_optab, op0, subtarget, 1); |