rust/tests/run-make/x86_64-fortanix-unknown-sgx-lvi/enclave/foo_cxx.cpp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
587 B
C++
Raw Normal View History

2020-03-27 05:24:17 -05:00
extern "C" int cc_plus_one_cxx(int *arg);
extern "C" int cc_plus_one_cxx_asm(int *arg);
int cc_plus_one_cxx(int *arg) {
return *arg + 1;
}
int cc_plus_one_cxx_asm(int *arg) {
int value = 0;
asm volatile ( " movl (%1), %0\n"
" inc %0\n"
" jmp 1f\n"
2020-09-25 08:13:55 -05:00
" retq\n" // never executed, but a shortcut to determine how
// the assembler deals with `ret` instructions
2020-03-27 05:24:17 -05:00
"1:\n"
: "=r"(value)
: "r"(arg) );
return value;
}