PR other/16615 [4/5]
authorSandra Loosemore <sandra@codesourcery.com>
Wed, 9 Jan 2019 21:44:56 +0000 (16:44 -0500)
committerSandra Loosemore <sandra@gcc.gnu.org>
Wed, 9 Jan 2019 21:44:56 +0000 (16:44 -0500)
2019-01-09  Sandra Loosemore  <sandra@codesourcery.com>

PR other/16615 [4/5]

gcc/
* config/pa/pa.c: Change "can not" to "cannot".
* gimple-ssa-evrp-analyze.c: Likewise.
* ipa-icf.c: Likewise.
* ipa-polymorphic-call.c: Likewise.
* ipa-pure-const.c: Likewise.
* lra-constraints.c: Likewise.
* lra-remat.c: Likewise.
* reload1.c: Likewise.
* reorg.c: Likewise.
* tree-ssa-uninit.c: Likewise.

gcc/ada/
* exp_ch11.adb: Change "can not" to "cannot".
* sem_ch4.adb: Likewise.

gcc/fortran/
* expr.c: Change "can not" to "cannot".

libobjc/
* objc/runtime.h: Change "can not" to "cannot".

From-SVN: r267786

18 files changed:
gcc/ChangeLog
gcc/ada/ChangeLog
gcc/ada/exp_ch11.adb
gcc/ada/sem_ch4.adb
gcc/config/pa/pa.c
gcc/fortran/ChangeLog
gcc/fortran/expr.c
gcc/gimple-ssa-evrp-analyze.c
gcc/ipa-icf.c
gcc/ipa-polymorphic-call.c
gcc/ipa-pure-const.c
gcc/lra-constraints.c
gcc/lra-remat.c
gcc/reload1.c
gcc/reorg.c
gcc/tree-ssa-uninit.c
libobjc/ChangeLog
libobjc/objc/runtime.h

index 749b9bcd3105e7a15be4446f2481133637856374..e04c52a0133163b936dd9d83693a607a6de2305c 100644 (file)
@@ -1,3 +1,18 @@
+2019-01-09  Sandra Loosemore  <sandra@codesourcery.com>
+
+       PR other/16615
+
+       * config/pa/pa.c: Change "can not" to "cannot".
+       * gimple-ssa-evrp-analyze.c: Likewise.
+       * ipa-icf.c: Likewise.
+       * ipa-polymorphic-call.c: Likewise.
+       * ipa-pure-const.c: Likewise.
+       * lra-constraints.c: Likewise.
+       * lra-remat.c: Likewise.
+       * reload1.c: Likewise.
+       * reorg.c: Likewise.
+       * tree-ssa-uninit.c: Likewise.
+
 2019-01-09  Sandra Loosemore  <sandra@codesourcery.com>
 
        PR other/16615
index 402ad9288b14f117d7bebec3e4be6649ec20ea44..d4d7eb27a5e71744e5cf59650837cbfdfe5ade2c 100644 (file)
@@ -1,3 +1,10 @@
+2019-01-09  Sandra Loosemore  <sandra@codesourcery.com>
+
+       PR other/16615
+
+       * exp_ch11.adb: Change "can not" to "cannot".
+       * sem_ch4.adb: Likewise.
+
 2019-01-09  Sandra Loosemore  <sandra@codesourcery.com>
 
        PR other/16615
index 720c659585ee27064b9ecf329ef4080a3690ea25..7296e6f11089759c8a1cbb6008508b9de4880ef6 100644 (file)
@@ -63,9 +63,10 @@ package body Exp_Ch11 is
    --  N is the node on which the warning is placed.
 
    procedure Warn_If_No_Propagation (N : Node_Id);
-   --  Called for an exception raise that is not a local raise (and thus can
-   --  not be optimized to a goto). Issues warning if No_Exception_Propagation
-   --  restriction is set. N is the node for the raise or equivalent call.
+   --  Called for an exception raise that is not a local raise (and thus
+   --  cannot be optimized to a goto). Issues warning if
+   --  No_Exception_Propagation restriction is set.
+   --  N is the node for the raise or equivalent call.
 
    ---------------------------
    -- Expand_At_End_Handler --
index 35df59d00f499067154c6fd6e0863c4a5dad5d43..2c40011781decfd7b96358fef77625fc3d53d75b 100644 (file)
@@ -1908,8 +1908,8 @@ package body Sem_Ch4 is
          while Present (Op_Id) loop
             if Ekind (Op_Id) = E_Operator then
 
-               --  Do not consider operators declared in dead code, they can
-               --  not be part of the resolution.
+               --  Do not consider operators declared in dead code, they
+               --  cannot be part of the resolution.
 
                if Is_Eliminated (Op_Id) then
                   null;
index 5042683e38876aeae2ce878736c2cdf0a397f152..5b83031c5ad43e583d148623683251f7774fff95 100644 (file)
@@ -1135,8 +1135,8 @@ hppa_legitimize_address (rtx x, rtx oldx ATTRIBUTE_UNUSED,
       /* If the newoffset will not fit in 14 bits (ldo), then
         handling this would take 4 or 5 instructions (2 to load
         the SYMBOL_REF + 1 or 2 to load the newoffset + 1 to
-        add the new offset and the SYMBOL_REF.)  Combine can
-        not handle 4->2 or 5->2 combinations, so do not create
+        add the new offset and the SYMBOL_REF.)  Combine cannot
+        handle 4->2 or 5->2 combinations, so do not create
         them.  */
       if (! VAL_14_BITS_P (newoffset)
          && GET_CODE (XEXP (x, 0)) == SYMBOL_REF)
@@ -9835,8 +9835,8 @@ pa_som_tm_clone_table_section (void)
 
 /* On hpux10, the linker will give an error if we have a reference
    in the read-only data section to a symbol defined in a shared
-   library.  Therefore, expressions that might require a reloc can
-   not be placed in the read-only data section.  */
+   library.  Therefore, expressions that might require a reloc
+   cannot be placed in the read-only data section.  */
 
 static section *
 pa_select_section (tree exp, int reloc,
index 8e81904ed86d0a771effa8e7d995f750d8c136f0..9a030c81656e88023f2c1c2141a0ac495637d4f4 100644 (file)
@@ -1,3 +1,9 @@
+2019-01-09  Sandra Loosemore  <sandra@codesourcery.com>
+
+       PR other/16615
+
+       * expr.c: Change "can not" to "cannot".
+
 2019-01-09  Sandra Loosemore  <sandra@codesourcery.com>
 
        PR other/16615
index bc318f757aa2199b89a886465970f71f47d77a8a..965214b0b2e4f36fde7a1af9d453e0fd0d81f1d5 100644 (file)
@@ -6060,12 +6060,14 @@ gfc_check_vardef_context (gfc_expr* e, bool pointer, bool alloc_obj,
          if (context)
            {
              if (assoc->target->expr_type == EXPR_VARIABLE)
-               gfc_error ("%qs at %L associated to vector-indexed target can"
-                          " not be used in a variable definition context (%s)",
+               gfc_error ("%qs at %L associated to vector-indexed target"
+                          " cannot be used in a variable definition"
+                          " context (%s)",
                           name, &e->where, context);
              else
-               gfc_error ("%qs at %L associated to expression can"
-                          " not be used in a variable definition context (%s)",
+               gfc_error ("%qs at %L associated to expression"
+                          " cannot be used in a variable definition"
+                          " context (%s)",
                           name, &e->where, context);
            }
          return false;
index 149b6664ff9167a2c84098b2860c81bb0ef3feb9..bb4e2d6e79831b7ae7ce130c845b6653f1842705 100644 (file)
@@ -319,8 +319,8 @@ evrp_range_analyzer::record_ranges_from_stmt (gimple *stmt, bool temporary)
            }
          else
            {
-             /* We're going to need to unwind this range.  We can
-                not use VR as that's a stack object.  We have to allocate
+             /* We're going to need to unwind this range.  We cannot
+                use VR as that's a stack object.  We have to allocate
                 a new range and push the old range onto the stack.  We
                 also have to be very careful about sharing the underlying
                 bitmaps.  Ugh.  */
index 056be1139db7fcdca66f131af1e1b9560c7b8578..849e9b4e9f5b84ff64f5f635c01f49092b9eaecd 100644 (file)
@@ -1160,8 +1160,8 @@ sem_function::merge (sem_item *alias_item)
                     "profitable (function is too small).\n");
        }
       /* If user paid attention to mark function noinline, assume it is
-        somewhat special and do not try to turn it into a wrapper that can
-        not be undone by inliner.  */
+        somewhat special and do not try to turn it into a wrapper that
+        cannot be undone by inliner.  */
       else if (lookup_attribute ("noinline", DECL_ATTRIBUTES (alias->decl)))
        {
          if (dump_file)
index 7d8c5ab9baf727416858ddb99d6878c227208c72..b93bf5561ae0d087038eaf5c200c9867edb2baff 100644 (file)
@@ -2202,8 +2202,8 @@ ipa_polymorphic_call_context::combine_with (ipa_polymorphic_call_context ctx,
          updated = true;
        }
 
-      /* If we do not know how the context is being used, we can
-        not clear MAYBE_IN_CONSTRUCTION because it may be offseted
+      /* If we do not know how the context is being used, we cannot
+        clear MAYBE_IN_CONSTRUCTION because it may be offseted
         to other component of OUTER_TYPE later and we know nothing
         about it.  */
       if (otr_type && maybe_in_construction
index d2dcf7c2d43e82d8889909f092d5c2687be8e6ca..37b58853fe1fb17e5c53cce21062468b7ef709ea 100644 (file)
@@ -1792,8 +1792,8 @@ propagate_nothrow (void)
                                   function_or_virtual_thunk_symbol (&avail,
                                                                     e->caller);
 
-                 /* We can use info about the callee only if we know it can
-                    not be interposed.
+                 /* We can use info about the callee only if we know it
+                    cannot be interposed.
                     When callee is compiled with non-call exceptions we also
                     must check that the declaration is bound to current
                     body as other semantically equivalent body may still
index e3b5ddb52269c250e6d445db30c9e5c8a9d21507..4f434e5332ff55cbc3ea54cda2b34c71b42e45f9 100644 (file)
@@ -2647,8 +2647,8 @@ process_alt_operands (int only_alternative)
                     class which does not have actually enough regs to
                     hold the value (e.g. x86 AREG for mode requiring
                     more one general reg).  Therefore we have 2
-                    conditions to check that the reload pseudo can
-                    not hold the mode value.  */
+                    conditions to check that the reload pseudo cannot
+                    hold the mode value.  */
                  && (!targetm.hard_regno_mode_ok
                      (ira_class_hard_regs[this_alternative][0],
                       GET_MODE (*curr_id->operand_loc[nop])))
index 8dde7d20904bbeb13dccdb9246bc932a0a5cb9d2..10838116143e50878ac8c08d3a57997c5ec93ff1 100644 (file)
@@ -110,8 +110,8 @@ struct cand
 
 /* Vector containing all candidates.  */
 static vec<cand_t> all_cands;
-/* Map: insn -> candidate representing it.  It is null if the insn can
-   not be used for rematerialization.  */
+/* Map: insn -> candidate representing it.  It is null if the insn cannot
+   be used for rematerialization.  */
 static cand_t *insn_to_cand;
 /* A secondary map, for candidates that involve two insns, where the
    second one makes the equivalence.  The candidate must not be used
index 9e4429f36cb8a4c13cb1df3bd86623a934a38614..42012e4a6b3989a6c36d6a559976efa45a42d920 100644 (file)
@@ -4029,8 +4029,8 @@ update_eliminables_and_spill (void)
        did_spill = true;
 
        /* Regardless of the state of spills, if we previously had
-          a register that we thought we could eliminate, but now can
-          not eliminate, we must run another pass.
+          a register that we thought we could eliminate, but now
+          cannot eliminate, we must run another pass.
 
           Consider pseudos which have an entry in reg_equiv_* which
           reference an eliminable register.  We must make another pass
index d2b565438e72a91745511cb33b586fb79d23f2ec..84128a4fe9e8e9453d8627dc2c4fe138ad338047 100644 (file)
@@ -1066,8 +1066,8 @@ steal_delay_list_from_target (rtx_insn *insn, rtx condition, rtx_sequence *seq,
 
      We cannot steal the delay list if one of the instructions in the
      current delay_list modifies the condition codes and the jump in the
-     sequence is a conditional jump. We cannot do this because we can
-     not change the direction of the jump because the condition codes
+     sequence is a conditional jump. We cannot do this because we cannot
+     change the direction of the jump because the condition codes
      will effect the direction of the jump in the sequence.  */
 
   CLEAR_RESOURCE (&cc_set);
index 32cf730f4eec670a3ad0bc2ab5d4314c914fa8d6..55a55a05c96604ed3ca6c6f94e18aba37e3787a1 100644 (file)
@@ -1564,8 +1564,8 @@ is_included_in (pred_chain one_pred, pred_chain_union preds)
    individual predicate chains (won't be a compile time problem
    as the chains are pretty short).  When the function returns
    false, it does not necessarily mean *PREDS1 is not a superset
-   of *PREDS2, but mean it may not be so since the analysis can
-   not prove it.  In such cases, false warnings may still be
+   of *PREDS2, but mean it may not be so since the analysis cannot
+   prove it.  In such cases, false warnings may still be
    emitted.  */
 
 static bool
index a85fb5986c7ccef57b6998ad8ffbb290d1fda9c3..f2f6ca57e64a367c21f6e52c44e3b74556d6ce78 100644 (file)
@@ -1,3 +1,9 @@
+2019-01-09  Sandra Loosemore  <sandra@codesourcery.com>
+
+       PR other/16615
+
+       * objc/runtime.h: Change "can not" to "cannot".
+
 2019-01-09  Sandra Loosemore  <sandra@codesourcery.com>
 
        PR other/16615
index 2ce23ccfd8650abadd35d497a8673f67498b52c5..dc7d12d248f03ac360030dd24a634082c75c0d6f 100644 (file)
@@ -224,8 +224,8 @@ objc_EXPORT SEL * sel_copyTypedSelectorList (const char *name,
    This is useful if you have the name of the selector, and would
    really like to get a selector for it that includes the type
    encoding.  Unfortunately, if the program contains multiple selector
-   with the same name but different types, sel_getTypedSelector can
-   not possibly know which one you need, and so will return NULL.
+   with the same name but different types, sel_getTypedSelector cannot
+   possibly know which one you need, and so will return NULL.
 
    Compatibility Note: the Apple/NeXT runtime has untyped selectors,
    so it does not have this function, which is specific to the GNU