Skip to main content
Product
Technology
Discover
Solutions
Docs
Downloads
Pricing
Search
/
Sign in
Sign up
brintos
/
llvm-project-archived
public
Read only
Watch
0
Star
0
Fork
0
Files
Commits
Issues
2
Discussions
0
Wiki
0
Insights
llvm-project-archived
/
lldb
/
test
/
API
/
functionalities
/
unwind
/
frameless-faulted
/
main.c
Text
·
98 B
·
e5f690a
Raw
8 lines · c
1
int to_be_interrupted(int);
2
3
int main() {
4
int c = 10;
5
c = to_be_interrupted(c);
6
return c;
7
}
8