Blame pixman/pixman-arm-asm.h

Packit 030a23
/*
Packit 030a23
 * Copyright © 2008 Mozilla Corporation
Packit 030a23
 * Copyright © 2010 Nokia Corporation
Packit 030a23
 *
Packit 030a23
 * Permission to use, copy, modify, distribute, and sell this software and its
Packit 030a23
 * documentation for any purpose is hereby granted without fee, provided that
Packit 030a23
 * the above copyright notice appear in all copies and that both that
Packit 030a23
 * copyright notice and this permission notice appear in supporting
Packit 030a23
 * documentation, and that the name of Mozilla Corporation not be used in
Packit 030a23
 * advertising or publicity pertaining to distribution of the software without
Packit 030a23
 * specific, written prior permission.  Mozilla Corporation makes no
Packit 030a23
 * representations about the suitability of this software for any purpose.  It
Packit 030a23
 * is provided "as is" without express or implied warranty.
Packit 030a23
 *
Packit 030a23
 * THE COPYRIGHT HOLDERS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS
Packit 030a23
 * SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
Packit 030a23
 * FITNESS, IN NO EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY
Packit 030a23
 * SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
Packit 030a23
 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN
Packit 030a23
 * AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING
Packit 030a23
 * OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
Packit 030a23
 * SOFTWARE.
Packit 030a23
 *
Packit 030a23
 * Author:  Jeff Muizelaar (jeff@infidigm.net)
Packit 030a23
 *
Packit 030a23
 */
Packit 030a23
Packit 030a23
/* Supplementary macro for setting function attributes */
Packit 030a23
.macro pixman_asm_function fname
Packit 030a23
	.func fname
Packit 030a23
	.global fname
Packit 030a23
#ifdef __ELF__
Packit 030a23
	.hidden fname
Packit 030a23
	.type fname, %function
Packit 030a23
#endif
Packit 030a23
fname:
Packit 030a23
.endm