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
/
data-formatter
/
data-formatter-caching
/
a.c
Text
·
98 B
·
f2dde81
Raw
10 lines · c
1
typedef float float4;
2
3
int a();
4
5
int main() {
6
float4 f = 4.0f;
7
// break here
8
return a();
9
}
10