Commit 8e5da0eb authored by Miles Bader's avatar Miles Bader Committed by Linus Torvalds

[PATCH] Use .balign rather than .align for v850 asm funcs

Removes a bunch of unnecessary nops... :-)
parent ac35a427
/*
* 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) \
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment