summaryrefslogtreecommitdiff
path: root/gcc/regcprop.c
diff options
context:
space:
mode:
authorAldy Hernandez <aldyh@redhat.com>2015-07-13 04:46:34 +0000
committerAldy Hernandez <aldyh@gcc.gnu.org>2015-07-13 04:46:34 +0000
commit026c3cfd5e92e7f358290921984b57e1b433e658 (patch)
treeb334918063791e89f97a111eb02e3d0c9f8a766e /gcc/regcprop.c
parent7e8ce0f35920ca44b790a742ab1e5058034c7fc2 (diff)
Fix double word typos.
From-SVN: r225726
Diffstat (limited to 'gcc/regcprop.c')
-rw-r--r--gcc/regcprop.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/regcprop.c b/gcc/regcprop.c
index 46d0695898d..627c630d05e 100644
--- a/gcc/regcprop.c
+++ b/gcc/regcprop.c
@@ -352,7 +352,7 @@ copy_value (rtx dest, rtx src, struct value_data *vd)
we must not do the same for the high part.
Note we can still get low parts for the same mode combination through
a two-step copy involving differently sized hard regs.
- Assume hard regs fr* are 32 bits bits each, while r* are 64 bits each:
+ Assume hard regs fr* are 32 bits each, while r* are 64 bits each:
(set (reg:DI r0) (reg:DI fr0))
(set (reg:SI fr2) (reg:SI r0))
loads the low part of (reg:DI fr0) - i.e. fr1 - into fr2, while: