Fix indentation.

From-SVN: r168797
This commit is contained in:
Mike Stump 2011-01-14 18:11:27 +00:00
parent a5983012cd
commit 47524032e0
1 changed files with 2 additions and 2 deletions

View File

@ -141,7 +141,7 @@
;; Push a register onto the stack
(define_insn "movsi_push"
[(set:SI (mem:SI (pre_dec:SI (reg:SI 15)))
(match_operand:SI 0 "register_operand" "a"))]
(match_operand:SI 0 "register_operand" "a"))]
""
"st %0, @-r15"
)
@ -149,7 +149,7 @@
;; Pop a register off the stack
(define_insn "movsi_pop"
[(set:SI (match_operand:SI 0 "register_operand" "=a")
(mem:SI (post_inc:SI (reg:SI 15))))]
(mem:SI (post_inc:SI (reg:SI 15))))]
""
"ld @r15+, %0"
)