From 8e5da0eb3aeef4c4adfffb2e523c4bdace67250c Mon Sep 17 00:00:00 2001 From: Miles Bader Date: Tue, 18 Feb 2003 05:39:28 -0800 Subject: [PATCH] Use .balign rather than .align for v850 asm funcs Removes a bunch of unnecessary nops... :-) --- include/asm-v850/asm.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'include') diff --git a/include/asm-v850/asm.h b/include/asm-v850/asm.h index 70c8130cc008..5b207f869017 100644 --- a/include/asm-v850/asm.h +++ b/include/asm-v850/asm.h @@ -1,8 +1,8 @@ /* * include/asm-v850/asm.h -- Macros for writing assembly code * - * Copyright (C) 2001,02 NEC Corporation - * Copyright (C) 2001,02 Miles Bader + * Copyright (C) 2001,02,03 NEC Corporation + * Copyright (C) 2001,02,03 Miles Bader * * This file is subject to the terms and conditions of the GNU General * Public License. See the file COPYING in the main directory of this @@ -12,7 +12,7 @@ */ #define G_ENTRY(name) \ - .align 4; \ + .balign 4; \ .globl name; \ .type name,@function; \ name @@ -24,7 +24,7 @@ .size name,.-name #define L_ENTRY(name) \ - .align 4; \ + .balign 4; \ .type name,@function; \ name #define L_DATA(name) \ -- cgit v1.2.3