summaryrefslogtreecommitdiff
path: root/test/Unit/ipow.cpp
blob: 0956bb23709a06fa6b01ce84c560c5ed673be4b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
//===-- ipow.cpp - Test libflang_pow_i*_i* --------------------------------===//
//
// 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.
//
//===----------------------------------------------------------------------===//

#include <assert.h>
#include <iostream>
#include "Numerical/Integer.h"

bool testPowI4(int32_t x, int32_t y, int32_t expected) {
  x = libflang_pow_i4_i4(x, y);
  if(x != expected)
    std::cout << "Error in libflang_pow_i4_i4 - expected " << expected
              << ", got " << x << std::endl;
  return x != expected;
}

int main() {
  if(testPowI4(2,2,4))
    return 1;
  if(testPowI4(3,3,27))
    return 1;
  if(testPowI4(4,1,4))
    return 1;
  if(testPowI4(5,0,1))
    return 1;
  if(testPowI4(6,-1,0))
    return 1;
  if(testPowI4(-1,2,1))
    return 1;
  if(testPowI4(-1,-1,0))
    return 1;
  return 0;
}