Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/arch/atari/atari Don't use multi-line string literals.
details: https://anonhg.NetBSD.org/src/rev/6a55b1921e03
branches: trunk
changeset: 532052:6a55b1921e03
user: thorpej <thorpej%NetBSD.org@localhost>
date: Thu May 30 22:25:51 2002 +0000
description:
Don't use multi-line string literals.
diffstat:
sys/arch/atari/atari/le_bus.c | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
diffs (22 lines):
diff -r 7f006d860d05 -r 6a55b1921e03 sys/arch/atari/atari/le_bus.c
--- a/sys/arch/atari/atari/le_bus.c Thu May 30 22:19:11 2002 +0000
+++ b/sys/arch/atari/atari/le_bus.c Thu May 30 22:25:51 2002 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: le_bus.c,v 1.5 2000/01/19 13:12:55 leo Exp $ */
+/* $NetBSD: le_bus.c,v 1.6 2002/05/30 22:25:51 thorpej Exp $ */
/*-
* Copyright (c) 1998 The NetBSD Foundation, Inc.
@@ -237,9 +237,9 @@
static __inline__ u_int32_t swap32(u_int32_t v)
{
- __asm volatile (" rolw #8, %0
- swap %0
- rolw #8, %0" : "=d"(v) : "0"(v));
+ __asm volatile (" rolw #8, %0 \n"
+ " swap %0 \n"
+ " rolw #8, %0" : "=d"(v) : "0"(v));
return(v);
}
Home |
Main Index |
Thread Index |
Old Index