Module Name: src
Committed By: joerg
Date: Mon Jan 5 17:04:24 UTC 2015
Modified Files:
src/sys/arch/arm/arm32: arm32_reboot.c
Log Message:
Mark end of cpu_reboot as unreachable.
To generate a diff of this commit:
cvs rdiff -u -r1.7 -r1.8 src/sys/arch/arm/arm32/arm32_reboot.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/arm32_reboot.c
diff -u src/sys/arch/arm/arm32/arm32_reboot.c:1.7 src/sys/arch/arm/arm32/arm32_reboot.c:1.8
--- src/sys/arch/arm/arm32/arm32_reboot.c:1.7 Fri Jan 2 18:49:02 2015
+++ src/sys/arch/arm/arm32/arm32_reboot.c Mon Jan 5 17:04:24 2015
@@ -1,4 +1,4 @@
-/* $NetBSD: arm32_reboot.c,v 1.7 2015/01/02 18:49:02 christos Exp $ */
+/* $NetBSD: arm32_reboot.c,v 1.8 2015/01/05 17:04:24 joerg Exp $ */
/*
* Copyright (c) 2002, 2003, 2005 Genetec Corporation. All rights reserved.
@@ -122,7 +122,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: arm32_reboot.c,v 1.7 2015/01/02 18:49:02 christos Exp $");
+__KERNEL_RCSID(0, "$NetBSD: arm32_reboot.c,v 1.8 2015/01/05 17:04:24 joerg Exp $");
#include <sys/param.h>
#include <sys/device.h>
@@ -203,4 +203,5 @@ cpu_reboot(int howto, char *bootstr)
IRQdisable;
docpureset(howto);
+ __unreachable();
}