xref: /llvm-project/lldb/test/API/functionalities/data-formatter/data-formatter-caching/b.c (revision 99451b4453688a94c6014cac233d371ab4cc342d)
1 typedef float float4 __attribute__((ext_vector_type(4)));
stop()2 void stop() {}
a()3 int a() {
4   float4 f4 = {1, 2, 3, 4};
5   // break here
6   stop();
7   return 0;
8 }
9