summaryrefslogtreecommitdiffstats
path: root/src/test/run-make/x86_64-fortanix-unknown-sgx-lvi/enclave/foo.c
blob: dd76d4f303a9545a22320b2d04417176a0f13826 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
int cc_plus_one_c(int *arg) {
    return *arg + 1;
}

int cc_plus_one_c_asm(int *arg) {
    int value = 0;

    asm volatile ( "    movl (%1), %0\n"
                   "    inc %0\n"
                   "    jmp 1f\n"
                   "    retq\n"  // never executed, but a shortcut to determine how
                                 // the assembler deals with `ret` instructions
                   "1:\n"
                   : "=r"(value)
                   : "r"(arg) );

    return value;
}