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
/
linux
/
mix-dwo-and-regular-objects
/
b.c
Text
·
94 B
·
d79970e
Raw
12 lines · c
1
extern int f();
2
3
void g() {
4
int y = 14;
5
int x = f();
6
}
7
8
int main() {
9
g();
10
return 0;
11
}
12