summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorMiles Bader <miles@lsi.nec.co.jp>2003-02-18 05:39:28 -0800
committerLinus Torvalds <torvalds@home.transmeta.com>2003-02-18 05:39:28 -0800
commit8e5da0eb3aeef4c4adfffb2e523c4bdace67250c (patch)
tree259991d666d16bc9a5b0b63d2959b87dde9e5c96 /include
parentac35a427ee89833c01b43335af76dc3a20c735bd (diff)
[PATCH] Use .balign rather than .align for v850 asm funcs
Removes a bunch of unnecessary nops... :-)
Diffstat (limited to 'include')
-rw-r--r--include/asm-v850/asm.h8
1 files changed, 4 insertions, 4 deletions
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 <miles@gnu.org>
+ * Copyright (C) 2001,02,03 NEC Corporation
+ * Copyright (C) 2001,02,03 Miles Bader <miles@gnu.org>
*
* 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) \