public inbox for gcc-patches@gcc.gnu.org
 help / color / mirror / Atom feed
* Re: [PATCH] VAX: spellcheck MD file
@ 2005-04-01  2:30 John David Anglin
  2005-04-01  7:05 ` Jan-Benedict Glaw
  0 siblings, 1 reply; 3+ messages in thread
From: John David Anglin @ 2005-04-01  2:30 UTC (permalink / raw)
  To: gcc-patches; +Cc: jbglaw

> 2005-03-31  Jan-Benedict Glaw  <jbglaw@lug-owl.de>
>
> 	* gcc/config/vax/vax.md: Spellcheck, fix whitespace.

Ok.

Dave
-- 
J. David Anglin                                  dave.anglin@nrc-cnrc.gc.ca
National Research Council of Canada              (613) 990-0752 (FAX: 952-6602)

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] VAX: spellcheck MD file
  2005-04-01  2:30 [PATCH] VAX: spellcheck MD file John David Anglin
@ 2005-04-01  7:05 ` Jan-Benedict Glaw
  0 siblings, 0 replies; 3+ messages in thread
From: Jan-Benedict Glaw @ 2005-04-01  7:05 UTC (permalink / raw)
  To: John David Anglin; +Cc: gcc-patches

On Tue, Mar 29, 2005 at 05:29:59AM +0300, John David Anglin wrote:
> > 2005-03-31  Jan-Benedict Glaw  <jbglaw@lug-owl.de>
> >
> > 	* gcc/config/vax/vax.md: Spellcheck, fix whitespace.
> 
> Ok.

Please import the patch on your own. I've got the copyright assignments,
but no check-in access.

MfG, JBG

-- 
AWEK microdata GmbH -- Am Wellbach 4 -- 33609 Bielefeld

^ permalink raw reply	[flat|nested] 3+ messages in thread

* [PATCH] VAX: spellcheck MD file
@ 2005-03-31  8:28 Jan-Benedict Glaw
  0 siblings, 0 replies; 3+ messages in thread
From: Jan-Benedict Glaw @ 2005-03-31  8:28 UTC (permalink / raw)
  To: gcc-patches

Hi!

The last checkin to the VAX MD file introduced some typos, a double-
pasted line. This patch fixes that somewhat and cleans up some more
trailing whitespace.

2005-03-31  Jan-Benedict Glaw  <jbglaw@lug-owl.de>

	* gcc/config/vax/vax.md: Spellcheck, fix whitespace.

diff -Nurp src-fresh/gcc/config/vax/vax.md src-hacked/gcc/config/vax/vax.md
--- src-fresh/gcc/config/vax/vax.md	2005-03-29 22:22:10.000000000 +0200
+++ src-hacked/gcc/config/vax/vax.md	2005-03-30 23:20:27.000000000 +0200
@@ -23,7 +23,7 @@
 ;;- Instruction patterns.  When multiple patterns apply,
 ;;- the first one in the file is chosen.
 ;;-
-;;- See file "rtl.def" for documentation on define_insn, match_*, et. al.
+;;- See file "rtl.def" for documentation on define_insn, match_*, et al.
 ;;-
 ;;- cpp macro #define NOTICE_UPDATE_CC in file tm.h handles condition code
 ;;- updates for most instructions.
@@ -37,7 +37,7 @@
   ]
 )
 
-;; Integer modes supported on VAX, withd a mapping from machine mode
+;; Integer modes supported on VAX, with a mapping from machine mode
 ;; to mnemonic suffix.  DImode is always a special case.
 (define_mode_macro VAXint [QI HI SI])
 (define_mode_attr  isfx [(QI "b") (HI "w") (SI "l")])
@@ -46,11 +46,10 @@
 (define_mode_macro VAXfp [SF DF])
 (define_mode_attr  fsfx [(SF "f") (DF "%#")])
 
-;; Some ouput patterns want integer immediates with a prefix...
+;; Some output patterns want integer immediates with a prefix...
 (define_mode_attr  iprefx [(QI "B") (HI "H") (SI "N")])
 
 ;; We don't want to allow a constant operand for test insns because
-;; We don't want to allow a constant operand for test insns because
 ;; (set (cc0) (const_int foo)) has no mode information.  Such insns will
 ;; be folded while optimizing anyway.
 
@@ -473,7 +472,7 @@
 		  (sign_extend:DI
 		   (match_operand:SI 2 "nonimmediate_operand" "g")))
 	 (match_operand:DI 3 "immediate_operand" "F")))]
-  "GET_CODE (operands[3]) == CONST_DOUBLE 
+  "GET_CODE (operands[3]) == CONST_DOUBLE
     && CONST_DOUBLE_HIGH (operands[3]) == (CONST_DOUBLE_LOW (operands[3]) >> 31)"
   "*
 {
@@ -608,7 +607,7 @@
 \f
 ;; Arithmetic right shift on the VAX works by negating the shift count,
 ;; then emitting a right shift with the shift count negated.  This means
-;; that all actual shift counts in the RTL will be positive.  This 
+;; that all actual shift counts in the RTL will be positive.  This
 ;; prevents converting shifts to ZERO_EXTRACTs with negative positions,
 ;; which isn't valid.
 (define_expand "ashrsi3"
@@ -1416,7 +1415,7 @@
   ""
   "casel %0,$0,%1")
 \f
-;;- load or push effective address 
+;;- load or push effective address
 ;; These come after the move and add/sub patterns
 ;; because we don't want pushl $1 turned into pushad 1.
 ;; or addl3 r1,r2,r3 turned into movab 0(r1)[r2],r3.
@@ -1499,7 +1498,7 @@
 ;; These used to be peepholes, but it is more straightforward to do them
 ;; as single insns.  However, we must force the output to be a register
 ;; if it is not an offsettable address so that we know that we can assign
-;; to it twice. 
+;; to it twice.
 
 ;; If we had a good way of evaluating the relative costs, these could be
 ;; machine-independent.

MfG, JBG

-- 
AWEK microdata GmbH -- Am Wellbach 4 -- 33609 Bielefeld

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2005-04-01  7:05 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2005-04-01  2:30 [PATCH] VAX: spellcheck MD file John David Anglin
2005-04-01  7:05 ` Jan-Benedict Glaw
  -- strict thread matches above, loose matches on Subject: below --
2005-03-31  8:28 Jan-Benedict Glaw

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).