Artifact 6da08ed8d97610c57eae30551b3166cccb8daed718e757985c7efb72f5dc5f09:
- File
src/runtime/lookup-asm/lookup-asm.S
— part of check-in
[cec0f072f8]
at
2016-01-03 00:43:58
on branch 0.8
— Update copyright
While at it, also update the mail address. (user: js, size: 1465) [annotate] [blame] [check-ins using]
/* * Copyright (c) 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016 * Jonathan Schleifer <js@heap.zone> * * All rights reserved. * * This file is part of ObjFW. It may be distributed under the terms of the * Q Public License 1.0, which can be found in the file LICENSE.QPL included in * the packaging of this file. * * Alternatively, it may be distributed under the terms of the GNU General * Public License, either version 2 or 3, which can be found in the file * LICENSE.GPLv2 or LICENSE.GPLv3 respectively included in the packaging of this * file. */ #include "config.h" #if defined(__ELF__) # if defined(__x86_64__) || defined(__amd64__) # include "lookup-asm-x86_64-elf.S" # elif defined(__i386__) # include "lookup-asm-x86-elf.S" # elif defined(__arm__) || defined(__ARM__) # include "lookup-asm-arm-elf.S" # elif defined(__ppc__) || defined(__PPC__) # include "lookup-asm-ppc-elf.S" # elif (defined(_MIPS_SIM) && _MIPS_SIM == _ABIO32) || \ (defined(__mips_eabi) && _MIPS_SZPTR == 32) # include "lookup-asm-mips-elf.S" # elif defined(__sparc__) && !defined(__arch64__) # include "lookup-asm-sparc-elf.S" # endif #elif defined(__MACH__) # if defined(__x86_64__) # include "lookup-asm-x86_64-macho.S" # elif defined(__ppc__) # include "lookup-asm-ppc-macho.S" # endif #elif defined(_WIN32) # if defined(__x86_64__) # include "lookup-asm-x86_64-win64.S" # elif defined(__i386__) # include "lookup-asm-x86-win32.S" # endif #endif