Don't use multi-line string literals.

This commit is contained in:
thorpej 2002-05-30 21:27:41 +00:00
parent 9c144a7b82
commit a36957a2dd
1 changed files with 5 additions and 5 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: pm_direct.c,v 1.19 2002/03/05 17:39:26 shiba Exp $ */ /* $NetBSD: pm_direct.c,v 1.20 2002/05/30 21:27:41 thorpej Exp $ */
/* /*
* Copyright (C) 1997 Takashi Hamada * Copyright (C) 1997 Takashi Hamada
@ -901,10 +901,10 @@ pm_pmgrop_mrg(pmdata)
{ {
u_int32_t rval=0; u_int32_t rval=0;
asm(" __asm __volatile(
movl %1,%%a0 " movl %1,%%a0 \n"
.word 0xa085 " .word 0xa085 \n"
movl %%d0,%0" " movl %%d0,%0"
: "=g" (rval) : "=g" (rval)
: "g" (pmdata) : "g" (pmdata)
: "a0","d0"); : "a0","d0");