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

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


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

Log:
  Set the alignment to 4-bytes after a string as clang 3.5 can switch to
  thumb mode if this is incorrect.
  
  MFC after:	1 week
  Sponsored by:	ABT Systems Ltd

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

Modified: head/sys/arm/arm/fusu.S
==============================================================================
--- head/sys/arm/arm/fusu.S	Fri Dec  5 19:08:36 2014	(r275520)
+++ head/sys/arm/arm/fusu.S	Fri Dec  5 19:11:25 2014	(r275521)
@@ -271,7 +271,7 @@ _C_LABEL(fusubailout):
 
 fusupcbfaulttext:
 	.asciz	"Yikes - no valid PCB during fusuxxx() addr=%08x\n"
-	.align	0
+	.align	2
 #endif
 
 /*


More information about the svn-src-all mailing list