brintos

brintos / llvm-project-archived public Read only

0
0
Text · 151 B · 0d37c54 Raw
9 lines · c
1typedef float float4 __attribute__((ext_vector_type(4)));2void stop() {}3int a() {4  float4 f4 = {1, 2, 3, 4};5  // break here6  stop();7  return 0;8}9