summaryrefslogtreecommitdiff
path: root/include/Numerical/Integer.h
blob: e41b4f6085779224da13fc20fdb513e54cb93a6d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
//===--- Integer.h - Integer operations library -----------------*- C++ -*-===//
//
//                     The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//

#ifndef LLVM_LIBFLANG_NUMERICAL_INTEGER_H
#define LLVM_LIBFLANG_NUMERICAL_INTEGER_H

#include "Libflang.h"
#include <stdint.h>

LIBFLANG_ABI int8_t  libflang_pow_i1_i1(int8_t x, int8_t y);
LIBFLANG_ABI int16_t libflang_pow_i2_i2(int16_t x, int16_t y);
LIBFLANG_ABI int32_t libflang_pow_i4_i4(int32_t x, int32_t y);
LIBFLANG_ABI int64_t libflang_pow_i8_i8(int64_t x, int64_t y);

#endif