Module Name:    src
Committed By:   matt
Date:           Mon Mar 31 01:49:04 UTC 2014

Modified Files:
        src/sys/arch/arm/arm32: pmap.c

Log Message:
tag a variable with __diagused


To generate a diff of this commit:
cvs rdiff -u -r1.272 -r1.273 src/sys/arch/arm/arm32/pmap.c

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

Modified files:

Index: src/sys/arch/arm/arm32/pmap.c
diff -u src/sys/arch/arm/arm32/pmap.c:1.272 src/sys/arch/arm/arm32/pmap.c:1.273
--- src/sys/arch/arm/arm32/pmap.c:1.272	Sun Mar 30 15:55:08 2014
+++ src/sys/arch/arm/arm32/pmap.c	Mon Mar 31 01:49:04 2014
@@ -1,4 +1,4 @@
-/*	$NetBSD: pmap.c,v 1.272 2014/03/30 15:55:08 matt Exp $	*/
+/*	$NetBSD: pmap.c,v 1.273 2014/03/31 01:49:04 matt Exp $	*/
 
 /*
  * Copyright 2003 Wasabi Systems, Inc.
@@ -216,7 +216,7 @@
 #include <arm/locore.h>
 //#include <arm/arm32/katelib.h>
 
-__KERNEL_RCSID(0, "$NetBSD: pmap.c,v 1.272 2014/03/30 15:55:08 matt Exp $");
+__KERNEL_RCSID(0, "$NetBSD: pmap.c,v 1.273 2014/03/31 01:49:04 matt Exp $");
 
 //#define PMAP_DEBUG
 #ifdef PMAP_DEBUG
@@ -1607,7 +1607,7 @@ pmap_free_l2_bucket(pmap_t pm, struct l2
 	l2b->l2b_kva = NULL;
 
 	pd_entry_t * const pdep = pmap_l1_kva(pm) + l1slot;
-	pd_entry_t pde = *pdep;
+	pd_entry_t pde __diagused = *pdep;
 
 #ifdef ARM_MMU_EXTENDED
 	/*

Reply via email to