Sha256: e60e0353464d68718e39e8778367a18b90f7f1f333a071dcc2e78c1bad1fe063

Contents?: true

Size: 1.39 KB

Versions: 8

Compression:

Stored size: 1.39 KB

Contents

/* ===-- int_lib.h - configuration header for compiler-rt  -----------------===
 *
 *                     The LLVM Compiler Infrastructure
 *
 * This file is dual licensed under the MIT and the University of Illinois Open
 * Source Licenses. See LICENSE.TXT for details.
 *
 * ===----------------------------------------------------------------------===
 *
 * This file is a configuration header for compiler-rt.
 * This file is not part of the interface of this library.
 *
 * ===----------------------------------------------------------------------===
 */

#ifndef INT_LIB_H
#define INT_LIB_H

/* Assumption: Signed integral is 2's complement. */
/* Assumption: Right shift of signed negative is arithmetic shift. */
/* Assumption: Endianness is little or big (not mixed). */

/* ABI macro definitions */

#if __ARM_EABI__
# define ARM_EABI_FNALIAS(aeabi_name, name)         \
  void __aeabi_##aeabi_name() __attribute__((alias("__" #name)));
# define COMPILER_RT_ABI __attribute__((pcs("aapcs")))
#else
# define ARM_EABI_FNALIAS(aeabi_name, name)
# define COMPILER_RT_ABI
#endif

/* Include the standard compiler builtin headers we use functionality from. */
#include <limits.h>
#include <stdint.h>
#include <stdbool.h>
#include <float.h>

/* Include the commonly used internal type definitions. */
#include "int_types.h"

/* Include internal utility function declarations. */
#include "int_util.h"

#endif /* INT_LIB_H */

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
webruby-0.2.7 modules/emscripten/system/lib/compiler-rt/int_lib.h
webruby-0.2.5 modules/emscripten/system/lib/compiler-rt/int_lib.h
webruby-0.2.4 modules/emscripten/system/lib/compiler-rt/int_lib.h
webruby-0.2.2 modules/emscripten/system/lib/compiler-rt/int_lib.h
webruby-0.2.1 modules/emscripten/system/lib/compiler-rt/int_lib.h
webruby-0.1.2 modules/emscripten/system/lib/compiler-rt/int_lib.h
webruby-0.1.1 modules/emscripten/system/lib/compiler-rt/int_lib.h
webruby-0.1.0 modules/emscripten/system/lib/compiler-rt/int_lib.h