diff options
author | 2013-12-23 21:49:27 +0000 | |
---|---|---|
committer | 2013-12-23 21:49:27 +0000 | |
commit | 5b3abd28df15f5c2aed6e487fa8f88a33f7a24fa (patch) | |
tree | 54fc01b6ddd2cfd228e791aa23303411268f1d12 | |
parent | Fix two dotline bugs for the price of one. (diff) | |
download | wireguard-openbsd-5b3abd28df15f5c2aed6e487fa8f88a33f7a24fa.tar.xz wireguard-openbsd-5b3abd28df15f5c2aed6e487fa8f88a33f7a24fa.zip |
Fix indentation.
-rw-r--r-- | libexec/ld.so/powerpc/ldasm.S | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/libexec/ld.so/powerpc/ldasm.S b/libexec/ld.so/powerpc/ldasm.S index 261d93ee0a8..d05c917aeb0 100644 --- a/libexec/ld.so/powerpc/ldasm.S +++ b/libexec/ld.so/powerpc/ldasm.S @@ -1,4 +1,4 @@ -/* $OpenBSD: ldasm.S,v 1.14 2012/12/31 10:07:51 miod Exp $ */ +/* $OpenBSD: ldasm.S,v 1.15 2013/12/23 21:49:27 kettenis Exp $ */ /* * Copyright (c) 1999 Dale Rahn @@ -39,10 +39,10 @@ ENTRY(_dl_start) stw 27, 4(19) /* save in normal location */ # squirrel away the arguments for main - mr 20, 3 #argc - mr 21, 4 #argv - mr 22, 5 #envp - mr 23, 6 # ??? + mr 20, 3 #argc + mr 21, 4 #argv + mr 22, 5 #envp + mr 23, 6 # ??? bl 1f # this instruction never gets executed but can be used @@ -55,7 +55,7 @@ ENTRY(_dl_start) # it contains an offset to the location # of the GOT. - rlwinm 18,18,0,8,30 # mask off the offset portion of the instr. + rlwinm 18,18,0,8,30 # mask off the offset portion of the instr. /* * these adds effectively calculate the value the @@ -109,17 +109,17 @@ ENTRY(_dl_start) bl _dl_boot@local - mtctr 3 # put return value into ctr to execute + mtctr 3 # put return value into ctr to execute # get back the squirreled away the arguments for main - mr 3, 20 - mr 4, 21 - mr 5, 22 - mr 6, 23 - li 7, 0 + mr 3, 20 + mr 4, 21 + mr 5, 22 + mr 6, 23 + li 7, 0 - mtlr 27 + mtlr 27 lwz 1, 0(1) # Restore stack pointer. bctr # Go execute the 'real' program. |