summaryrefslogtreecommitdiff
path: root/tests/tcg/openrisc/test_lf_div.c
blob: 70b5d1c17b3284ddb6ee62dbcda8eed054de945d (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
#include <stdio.h>

int main(void)
{
    float a, b, c;
    float result;

    b = 1.5;
    c = 0.5;
    result = 3.0;
    __asm
    ("lf.div.s    %0, %1, %2\n\t"
     : "=r"(a)
     : "r"(b), "r"(c)
    );
    if (a != result) {
        printf("lf.div.s error\n");
        return -1;
    }

/*    double a, b, c, res;

    b = 0x80000000;
    c = 0x40;
    result = 0x2000000;
    __asm
    ("lf.div.d    %0, %1, %2\n\t"
     : "=r"(a)
     : "r"(b), "r"(c)
    );
    if (a != result) {
        printf("lf.div.d error\n");
        return -1;
    }*/

    return 0;
}