summaryrefslogblamecommitdiffstats
path: root/tests/tcg/mips/mips64-dsp/mfhi.c
blob: ee915f796e642736d517663f93fc94ef54749187 (plain) (tree)























                               
#include "io.h"

int main(void)
{
    long long achi, acho;
    long long result;

    achi   = 0x004433;
    result = 0x004433;

    __asm
        ("mthi %1, $ac1\n\t"
         "mfhi %0, $ac1\n\t"
         : "=r"(acho)
         : "r"(achi)
        );
    if (result != acho) {
        printf("mfhi wrong\n");

        return -1;
    }

    return 0;
}