Module Name:    src
Committed By:   matt
Date:           Wed Jun 12 15:10:13 UTC 2013

Modified Files:
        src/sys/arch/arm/arm: vectors.S

Log Message:
Deal with __ARM_FIQ_INDIRECT


To generate a diff of this commit:
cvs rdiff -u -r1.5 -r1.6 src/sys/arch/arm/arm/vectors.S

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/arm/vectors.S
diff -u src/sys/arch/arm/arm/vectors.S:1.5 src/sys/arch/arm/arm/vectors.S:1.6
--- src/sys/arch/arm/arm/vectors.S:1.5	Wed Jun 12 07:17:23 2013
+++ src/sys/arch/arm/arm/vectors.S	Wed Jun 12 15:10:13 2013
@@ -1,4 +1,4 @@
-/*	$NetBSD: vectors.S,v 1.5 2013/06/12 07:17:23 matt Exp $	*/
+/*	$NetBSD: vectors.S,v 1.6 2013/06/12 15:10:13 matt Exp $	*/
 
 /*
  * Copyright (C) 1994-1997 Mark Brinicombe
@@ -65,7 +65,11 @@ _C_LABEL(page0rel):
 	b	data_abort_entry
 	b	address_exception_entry
 	b	irq_entry
+#ifdef __ARM_FIQ_INDIRECT
 	b	_C_LABEL(fiqvector)
+#else
+	b	.Lfiqvector
+#endif
 #endif
 
 _C_LABEL(page0):

Reply via email to