aboutsummaryrefslogtreecommitdiff
path: root/gcc/flow.c
diff options
context:
space:
mode:
authorRichard Kenner <kenner@gcc.gnu.org>1995-05-16 08:39:54 -0400
committerRichard Kenner <kenner@gcc.gnu.org>1995-05-16 08:39:54 -0400
commit9faa82d8c081b9e38370b5a913825111d2166de6 (patch)
tree1e50640eecb618d0b3fa87607094528acb0add62 /gcc/flow.c
parentddd5a7c1808995545ad5befaa7320135e60b5d38 (diff)
downloadgcc-9faa82d8c081b9e38370b5a913825111d2166de6.zip
gcc-9faa82d8c081b9e38370b5a913825111d2166de6.tar.gz
gcc-9faa82d8c081b9e38370b5a913825111d2166de6.tar.bz2
Fix typos in comments.
From-SVN: r9712
Diffstat (limited to 'gcc/flow.c')
-rw-r--r--gcc/flow.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/flow.c b/gcc/flow.c
index d7467e5..a5aa1fb 100644
--- a/gcc/flow.c
+++ b/gcc/flow.c
@@ -177,7 +177,7 @@ int *reg_basic_block;
int *reg_n_refs;
-/* Indexed by N; says whether a psuedo register N was ever used
+/* Indexed by N; says whether a pseudo register N was ever used
within a SUBREG that changes the size of the reg. Some machines prohibit
such objects to be in certain (usually floating-point) registers. */
@@ -727,14 +727,14 @@ find_basic_blocks (f, nonlocal_label_list)
}
}
- /* There are pathalogical cases where one function calling hundreds of
+ /* There are pathological cases where one function calling hundreds of
nested inline functions can generate lots and lots of unreachable
blocks that jump can't delete. Since we don't use sparse matrices
a lot of memory will be needed to compile such functions.
Implementing sparse matrices is a fair bit of work and it is not
clear that they win more than they lose (we don't want to
unnecessarily slow down compilation of normal code). By making
- another pass for the pathalogical case, we can greatly speed up
+ another pass for the pathological case, we can greatly speed up
their compilation without hurting normal code. This works because
all the insns in the unreachable blocks have either been deleted or
turned into notes.