diff options
author | Jim Wilson <wilson@gcc.gnu.org> | 1992-12-31 14:18:00 -0800 |
---|---|---|
committer | Jim Wilson <wilson@gcc.gnu.org> | 1992-12-31 14:18:00 -0800 |
commit | 6ffe0821bb193f71b3ef9ba8fa0272c9e61914bc (patch) | |
tree | 19e782e6994dac0e2c0689a0ae44f58d4877cf8d /gcc | |
parent | a66279da54043bed248d3b0c5e98ac25a3b24a3d (diff) | |
download | gcc-6ffe0821bb193f71b3ef9ba8fa0272c9e61914bc.zip gcc-6ffe0821bb193f71b3ef9ba8fa0272c9e61914bc.tar.gz gcc-6ffe0821bb193f71b3ef9ba8fa0272c9e61914bc.tar.bz2 |
(expand_binop): Correct indentation of doubleword multiply picture.
From-SVN: r3024
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/optabs.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/optabs.c b/gcc/optabs.c index eed7bef..356a059 100644 --- a/gcc/optabs.c +++ b/gcc/optabs.c @@ -660,14 +660,14 @@ expand_binop (mode, binoptab, op0, op1, target, unsignedp, methods) _______________________ [__op0_high_|__op0_low__] _______________________ - * [__op1_high_|__op1_low__] + * [__op1_high_|__op1_low__] _______________________________________________ _______________________ - (1) [__op0_low__*__op1_low__] + (1) [__op0_low__*__op1_low__] _______________________ - (2a) [__op0_low__*__op1_high_] + (2a) [__op0_low__*__op1_high_] _______________________ - (2b) [__op0_high_*__op1_low__] + (2b) [__op0_high_*__op1_low__] _______________________ (3) [__op0_high_*__op1_high_] |