diff options
author | Philip Blundell <philb@gnu.org> | 2000-12-30 16:34:00 +0000 |
---|---|---|
committer | Phil Blundell <pb@gcc.gnu.org> | 2000-12-30 16:34:00 +0000 |
commit | f18969c0101a3a86860972b785d8e68feec7d4df (patch) | |
tree | 4191bce055090c7fe05d79150311383b0a802d69 | |
parent | 2df88e9f5881eb6bbe3ae405fb86530143c50e22 (diff) | |
download | gcc-f18969c0101a3a86860972b785d8e68feec7d4df.zip gcc-f18969c0101a3a86860972b785d8e68feec7d4df.tar.gz gcc-f18969c0101a3a86860972b785d8e68feec7d4df.tar.bz2 |
Fix typos.
From-SVN: r38562
-rw-r--r-- | gcc/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/config/arm/arm.c | 5 |
2 files changed, 9 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 38ed3eb..fc20b64 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2000-12-30 Philip Blundell <philb@gnu.org> + + * config/arm/arm.c (arm_expand_prologue): Fix typos in error + message and comment. Note location of testcase for an unhandled + situation. + 2000-12-30 Jeffrey Oldham <oldham@codesourcery.com> * defaults.h (BUILD_VA_LIST_TYPE): New definition. diff --git a/gcc/config/arm/arm.c b/gcc/config/arm/arm.c index 5511f11..c3a936c 100644 --- a/gcc/config/arm/arm.c +++ b/gcc/config/arm/arm.c @@ -7736,9 +7736,10 @@ arm_expand_prologue () /* FIXME - the way to handle this situation is to allow the pretend args to be dumped onto the stack, then reuse r3 to save IP. This would involve moving the - copying os SP into IP until after the pretend args + copying of SP into IP until after the pretend args have been dumped, but this is not too hard. */ - error ("Unable to find a temporary location for static chanin register"); + /* [See e.g. gcc.c-torture/execute/nest-stdar-1.c.] */ + error ("Unable to find a temporary location for static chain register"); } if (fp_offset) |