public inbox for gcc-patches@gcc.gnu.org
 help / color / mirror / Atom feed
* msp430: fix alignment in multiply
@ 2015-11-20  0:08 DJ Delorie
  0 siblings, 0 replies; only message in thread
From: DJ Delorie @ 2015-11-20  0:08 UTC (permalink / raw)
  To: gcc-patches


Minor fix, committed.

2015-11-19  DJ Delorie  <dj@redhat.com>

	* config/msp430/lib2hw_mul.S: Fix alignment.

Index: libgcc/config/msp430/lib2hw_mul.S
===================================================================
--- libgcc/config/msp430/lib2hw_mul.S	(revision 230632)
+++ libgcc/config/msp430/lib2hw_mul.S	(working copy)
@@ -19,13 +19,13 @@
 ; a copy of the GCC Runtime Library Exception along with this program;
 ; see the files COPYING3 and COPYING.RUNTIME respectively.  If not, see
 ; <http://www.gnu.org/licenses/>.
 
 .macro start_func name
 	.pushsection .text.\name,"ax",@progbits
-	.align 2
+	.p2align 1
 	.global \name
 	.type \name , @function
 \name:
 	PUSH.W	sr			; Save current interrupt state
 	DINT				; Disable interrupts
 	NOP				; Account for latency

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2015-11-20  0:08 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-11-20  0:08 msp430: fix alignment in multiply DJ Delorie

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).