artulab
projects
/
openbsd
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
0d37c54aa3392a231e8e32e6a4d1063b112556b3
[openbsd]
/
1
typedef float float4 __attribute__((ext_vector_type(4)));
2
void stop() {}
3
int a() {
4
float4 f4 = {1, 2, 3, 4};
5
// break here
6
stop();
7
return 0;
8
}