bolt/deps/llvm-18.1.8/lldb/test/API/arm/breakpoint-it/main.c
2025-02-14 19:21:04 +01:00

14 lines
281 B
C

int main() {
int value;
asm (
"cmp %1, %2\n\t"
"ite ne\n\t"
".thumb_func\n\t"
"bkpt_true:\n\t"
"movne %0, %1\n\t"
".thumb_func\n\t"
"bkpt_false:\n\t"
"moveq %0, %2\n\t"
: "=r" (value) : "r"(42), "r"(47));
return value;
}