summaryrefslogtreecommitdiff
path: root/sys/arch/arm/include
diff options
context:
space:
mode:
authorDale Rahn <drahn@cvs.openbsd.org>2010-04-22 21:01:46 +0000
committerDale Rahn <drahn@cvs.openbsd.org>2010-04-22 21:01:46 +0000
commit77a0f9836f97c78b20d395f1d6f6eb51b3201990 (patch)
treec9f9fc3e67feb466ee111c080c2e8ffc40bd7e33 /sys/arch/arm/include
parent48c9525fbac04c8e1c05497698a25ea0cf5f8e4e (diff)
Whitespace cleanup on generated asm code, so it is readable.
Diffstat (limited to 'sys/arch/arm/include')
-rw-r--r--sys/arch/arm/include/cpufunc.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/arch/arm/include/cpufunc.h b/sys/arch/arm/include/cpufunc.h
index 1385cc5d9ab..f21266a8087 100644
--- a/sys/arch/arm/include/cpufunc.h
+++ b/sys/arch/arm/include/cpufunc.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: cpufunc.h,v 1.6 2009/05/08 02:57:32 drahn Exp $ */
+/* $OpenBSD: cpufunc.h,v 1.7 2010/04/22 21:01:45 drahn Exp $ */
/* $NetBSD: cpufunc.h,v 1.29 2003/09/06 09:08:35 rearnsha Exp $ */
/*
@@ -516,10 +516,10 @@ __set_cpsr_c(u_int bic, u_int eor)
u_int32_t tmp, ret;
__asm __volatile(
- "mrs %0, cpsr\n" /* Get the CPSR */
- "bic %1, %0, %2\n" /* Clear bits */
- "eor %1, %1, %3\n" /* XOR bits */
- "msr cpsr_c, %1\n" /* Set the control field of CPSR */
+ "mrs %0, cpsr\n\t" /* Get the CPSR */
+ "bic %1, %0, %2\n\t" /* Clear bits */
+ "eor %1, %1, %3\n\t" /* XOR bits */
+ "msr cpsr_c, %1" /* Set CPSR control field */
: "=&r" (ret), "=&r" (tmp)
: "r" (bic), "r" (eor));