svn commit: r275523 - head/sys/arm/arm

Andrew Turner andrew at FreeBSD.org
Fri Dec 5 19:19:18 UTC 2014


Author: andrew
Date: Fri Dec  5 19:19:17 2014
New Revision: 275523
URL: https://svnweb.freebsd.org/changeset/base/275523

Log:
  Switch to an armv6k cpu, without this clang 3.5 complains "bx lr" is
  unsupported as it needs a newer cpu.
  
  MFC after:	1 week
  Sponsored by:	ABT Systems Ltd

Modified:
  head/sys/arm/arm/cpufunc_asm_arm11x6.S

Modified: head/sys/arm/arm/cpufunc_asm_arm11x6.S
==============================================================================
--- head/sys/arm/arm/cpufunc_asm_arm11x6.S	Fri Dec  5 19:14:05 2014	(r275522)
+++ head/sys/arm/arm/cpufunc_asm_arm11x6.S	Fri Dec  5 19:19:17 2014	(r275523)
@@ -62,7 +62,7 @@
 #include <machine/asm.h>
 __FBSDID("$FreeBSD$");
 
-	.cpu arm1136js
+	.cpu arm1176jz-s
 
 #if 0
 #define Invalidate_I_cache(Rtmp1, Rtmp2) \


More information about the svn-src-head mailing list