From 8aaf42236e396c5e927b071bc5647dd9c06e33aa Mon Sep 17 00:00:00 2001 From: jbglaw Date: Tue, 15 Jan 2013 21:30:24 +0000 Subject: [PATCH] * config/vax/vax.md (add3, sub3, mul3, div3, and3, *and_const_int, ior3, xor3, ashrsi3, *call): Fix indention. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@195218 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/ChangeLog | 6 ++++++ gcc/config/vax/vax.md | 20 ++++++++++---------- 2 files changed, 16 insertions(+), 10 deletions(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index d0efc8a0cae..02b41f76194 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2013-01-15 Jan-Benedict Glaw + + * config/vax/vax.md (add3, sub3, mul3, div3, + and3, *and_const_int, ior3, xor3, ashrsi3, + *call): Fix indention. + 2013-01-15 Tom de Vries PR target/55876 diff --git a/gcc/config/vax/vax.md b/gcc/config/vax/vax.md index f0a5c8b2de9..eadde18ad43 100644 --- a/gcc/config/vax/vax.md +++ b/gcc/config/vax/vax.md @@ -369,7 +369,7 @@ (define_insn "add3" [(set (match_operand:VAXint 0 "nonimmediate_operand" "=g") (plus:VAXint (match_operand:VAXint 1 "general_operand" "nrmT") - (match_operand:VAXint 2 "general_operand" "nrmT")))] + (match_operand:VAXint 2 "general_operand" "nrmT")))] "" "* return vax_output_int_add (insn, operands, mode);") @@ -409,7 +409,7 @@ (define_insn "sub3" [(set (match_operand:VAXint 0 "nonimmediate_operand" "=g,g") (minus:VAXint (match_operand:VAXint 1 "general_operand" "0,nrmT") - (match_operand:VAXint 2 "general_operand" "nrmT,nrmT")))] + (match_operand:VAXint 2 "general_operand" "nrmT,nrmT")))] "" "@ sub2 %2,%0 @@ -452,7 +452,7 @@ (define_insn "mul3" [(set (match_operand:VAXint 0 "nonimmediate_operand" "=g,g,g") (mult:VAXint (match_operand:VAXint 1 "general_operand" "0,nrmT,nrmT") - (match_operand:VAXint 2 "general_operand" "nrmT,0,nrmT")))] + (match_operand:VAXint 2 "general_operand" "nrmT,0,nrmT")))] "" "@ mul2 %2,%0 @@ -511,7 +511,7 @@ (define_insn "div3" [(set (match_operand:VAXint 0 "nonimmediate_operand" "=g,g") (div:VAXint (match_operand:VAXint 1 "general_operand" "0,nrmT") - (match_operand:VAXint 2 "general_operand" "nrmT,nrmT")))] + (match_operand:VAXint 2 "general_operand" "nrmT,nrmT")))] "" "@ div2 %2,%0 @@ -533,7 +533,7 @@ (define_expand "and3" [(set (match_operand:VAXint 0 "nonimmediate_operand" "") (and:VAXint (not:VAXint (match_operand:VAXint 1 "general_operand" "")) - (match_operand:VAXint 2 "general_operand" "")))] + (match_operand:VAXint 2 "general_operand" "")))] "" " { @@ -570,7 +570,7 @@ (define_insn "*and_const_int" [(set (match_operand:VAXint 0 "nonimmediate_operand" "=g,g") (and:VAXint (match_operand:VAXint 1 "general_operand" "0,nrmT") - (match_operand:VAXint 2 "const_int_operand" "n,n")))] + (match_operand:VAXint 2 "const_int_operand" "n,n")))] "" "@ bic2 %2,%0 @@ -582,7 +582,7 @@ (define_insn "ior3" [(set (match_operand:VAXint 0 "nonimmediate_operand" "=g,g,g") (ior:VAXint (match_operand:VAXint 1 "general_operand" "0,nrmT,nrmT") - (match_operand:VAXint 2 "general_operand" "nrmT,0,nrmT")))] + (match_operand:VAXint 2 "general_operand" "nrmT,0,nrmT")))] "" "@ bis2 %2,%0 @@ -594,7 +594,7 @@ (define_insn "xor3" [(set (match_operand:VAXint 0 "nonimmediate_operand" "=g,g,g") (xor:VAXint (match_operand:VAXint 1 "general_operand" "0,nrmT,nrmT") - (match_operand:VAXint 2 "general_operand" "nrmT,0,nrmT")))] + (match_operand:VAXint 2 "general_operand" "nrmT,0,nrmT")))] "" "@ xor2 %2,%0 @@ -629,7 +629,7 @@ (define_expand "ashrsi3" [(set (match_operand:SI 0 "general_operand" "=g") (ashiftrt:SI (match_operand:SI 1 "general_operand" "g") - (match_operand:QI 2 "general_operand" "g")))] + (match_operand:QI 2 "general_operand" "g")))] "" " { @@ -1361,7 +1361,7 @@ (define_insn "*call" [(call (match_operand:QI 0 "memory_operand" "m") - (match_operand:SI 1 "const_int_operand" ""))] + (match_operand:SI 1 "const_int_operand" ""))] "" "calls $0,%0") -- 2.11.4.GIT