[flang][cuda] Do not register global constants (#118582)
[llvm-project.git] / llvm / test / CodeGen / AArch64 / complex-copy-noneon.ll
blob7e559edac8fb48efcda43b6811d93f0e48da3de1
1 ; RUN: llc -mtriple=aarch64-none-linux-gnu -mattr=-neon < %s
3 ; The DAG combiner decided to use a vector load/store for this struct copy
4 ; previously. This probably shouldn't happen without NEON, but the most
5 ; important thing is that it compiles.
7 define void @store_combine() nounwind {
8   %src = alloca { double, double }, align 8
9   %dst = alloca { double, double }, align 8
11   %src.realp = getelementptr inbounds { double, double }, ptr %src, i32 0, i32 0
12   %src.real = load double, ptr %src.realp
13   %src.imagp = getelementptr inbounds { double, double }, ptr %src, i32 0, i32 1
14   %src.imag = load double, ptr %src.imagp
16   %dst.realp = getelementptr inbounds { double, double }, ptr %dst, i32 0, i32 0
17   %dst.imagp = getelementptr inbounds { double, double }, ptr %dst, i32 0, i32 1
18   store double %src.real, ptr %dst.realp
19   store double %src.imag, ptr %dst.imagp
20   ret void