Sign in
llvm
/
llvm-project
/
41a94de75caacb979070ec7a010dfe3c4e9f116f
/
.
/
lldb
/
test
/
API
/
functionalities
/
data-formatter
/
data-formatter-caching
/
b.c
blob: 0d37c54aa3392a231e8e32e6a4d1063b112556b3 [
file
] [
log
] [
blame
]
typedef
float
float4
__attribute__
((
ext_vector_type
(
4
)));
void
stop
()
{}
int
a
()
{
float4
f4
=
{
1
,
2
,
3
,
4
};
// break here
stop
();
return
0
;
}