diff options
author | Mark Kettenis <kettenis@cvs.openbsd.org> | 2010-04-05 19:04:33 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@cvs.openbsd.org> | 2010-04-05 19:04:33 +0000 |
commit | f381e6f17e41a42968f3f43122431778e6fbbea1 (patch) | |
tree | c25dd25c4b0df6728d0afec6cc7f5630505e0c0b | |
parent | f72eaec21ea2ca0c18a2c9f8b314352921170f3c (diff) |
Fix indentation.
-rw-r--r-- | sys/arch/amd64/amd64/vector.S | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/amd64/amd64/vector.S b/sys/arch/amd64/amd64/vector.S index 025718b86c9..2f90fb7545e 100644 --- a/sys/arch/amd64/amd64/vector.S +++ b/sys/arch/amd64/amd64/vector.S @@ -1,4 +1,4 @@ -/* $OpenBSD: vector.S,v 1.24 2009/11/01 22:13:27 kettenis Exp $ */ +/* $OpenBSD: vector.S,v 1.25 2010/04/05 19:04:32 kettenis Exp $ */ /* $NetBSD: vector.S,v 1.5 2004/06/28 09:13:11 fvdl Exp $ */ /* @@ -410,8 +410,8 @@ IDTVEC(intr_##name##num) ;\ pushq $0 /* dummy error code */ ;\ pushq $T_ASTFLT /* trap # for doing ASTs */ ;\ INTRENTRY ;\ - movq CPUVAR(ISOURCES) + (num) * 8, %r14 ;\ - mask(num) /* mask it in hardware */ ;\ + movq CPUVAR(ISOURCES) + (num) * 8, %r14 ;\ + mask(num) /* mask it in hardware */ ;\ early_ack(num) /* and allow other intrs */ ;\ testq %r14,%r14 ;\ jz 9f /* stray */ ;\ |