Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 508fea71 authored by Linus Torvalds's avatar Linus Torvalds
Browse files
Pull arch/nios2 fix from Ley Foon Tan:
 "memset: use the right constraint modifier for the %4 output operand"

* tag 'nios2-v4.6-fix' of git://git.kernel.org/pub/scm/linux/kernel/git/lftan/nios2:
  nios2: memset: use the right constraint modifier for the %4 output operand
parents 9453203b a8950e49
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -68,7 +68,7 @@ void *memset(void *s, int c, size_t count)
		  "=r" (charcnt),	/* %1  Output */
		  "=r" (dwordcnt),	/* %2  Output */
		  "=r" (fill8reg),	/* %3  Output */
		  "=r" (wrkrega)	/* %4  Output */
		  "=&r" (wrkrega)	/* %4  Output only */
		: "r" (c),		/* %5  Input */
		  "0" (s),		/* %0  Input/Output */
		  "1" (count)		/* %1  Input/Output */