[flang] Fix length handling in character kind implicit conversion (#74586)
[llvm-project.git] / lldb / test / Shell / Register / Inputs / arm-fp-read.cpp
blob2dce2ed2d7532544e3c6aa3c7128f8288adffbc4
1 int main() {
2 asm volatile(
3 "vmov.f64 d0, #0.5\n\t"
4 "vmov.f64 d1, #1.5\n\t"
5 "vmov.f64 d2, #2.5\n\t"
6 "vmov.f64 d3, #3.5\n\t"
7 "vmov.f32 s8, #4.5\n\t"
8 "vmov.f32 s9, #5.5\n\t"
9 "vmov.f32 s10, #6.5\n\t"
10 "vmov.f32 s11, #7.5\n\t"
11 "\n\t"
12 "bkpt #0\n\t"
15 : "d0", "d1", "d2", "d3", "s8", "s9", "s10", "s11"
18 return 0;