Minor corrections in comments.
authorChandrakala Chavva <cchavva@redhat.com>
Thu, 19 Oct 2000 15:48:22 +0000 (11:48 -0400)
committerChandra Chavva <cchavva@gcc.gnu.org>
Thu, 19 Oct 2000 15:48:22 +0000 (11:48 -0400)
From-SVN: r36951

gcc/ChangeLog
gcc/expmed.c

index 1ba74302de7b7a0b4d0e9122cbb160b478724951..80e06b3921e54997dfadaffe03d12cb2efb20b39 100644 (file)
@@ -1,3 +1,8 @@
+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.
index bdd9fa703c4901aac1374530e4574cebb7467b6e..260506215618e3dc38501984b4857eba48d7043f 100644 (file)
@@ -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);