Module Name:    src
Committed By:   matt
Date:           Fri Aug  3 06:06:45 UTC 2012

Modified Files:
        src/common/lib/libc/arch/mips/atomic: membar_ops.S

Log Message:
Add a missing .set noreorder


To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.5 src/common/lib/libc/arch/mips/atomic/membar_ops.S

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/common/lib/libc/arch/mips/atomic/membar_ops.S
diff -u src/common/lib/libc/arch/mips/atomic/membar_ops.S:1.4 src/common/lib/libc/arch/mips/atomic/membar_ops.S:1.5
--- src/common/lib/libc/arch/mips/atomic/membar_ops.S:1.4	Mon Dec 14 00:39:00 2009
+++ src/common/lib/libc/arch/mips/atomic/membar_ops.S	Fri Aug  3 06:06:44 2012
@@ -1,4 +1,4 @@
-/*	$NetBSD: membar_ops.S,v 1.4 2009/12/14 00:39:00 matt Exp $	*/
+/*	$NetBSD: membar_ops.S,v 1.5 2012/08/03 06:06:44 matt Exp $	*/
 
 /*-
  * Copyright (c) 2006, 2007 The NetBSD Foundation, Inc.
@@ -50,13 +50,14 @@
 #endif
 
 	.text
+	.set noreorder
 
 LEAF(_membar_sync)
 	j	ra
 #ifdef SYNC
-	SYNC
+	 SYNC
 #else
-	  nop
+	 nop
 #endif
 END(_membar_sync)
 

Reply via email to