repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[ORC] Fail materialization in tasks that are destroyed before running.
[llvm-project.git]
/
lldb
/
test
/
API
/
arm
/
breakpoint-it
/
main.c
blob
35d57bb1b843e3b12bf408352d37232dd6c5aca5
1
int
main
() {
2
int
value
;
3
asm
(
4
"cmp %1, %2
\n\t
"
5
"ite ne
\n\t
"
6
".thumb_func
\n\t
"
7
"bkpt_true:
\n\t
"
8
"movne %0, %1
\n\t
"
9
".thumb_func
\n\t
"
10
"bkpt_false:
\n\t
"
11
"moveq %0, %2
\n\t
"
12
:
"=r"
(
value
) :
"r"
(
42
),
"r"
(
47
));
13
return
value
;
14
}