Minor fix, committed.

2015-11-19  DJ Delorie  <d...@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

Reply via email to