diff options
Diffstat (limited to 'test/CodeGen/AArch64/complex-copy-noneon.ll')
-rw-r--r-- | test/CodeGen/AArch64/complex-copy-noneon.ll | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/test/CodeGen/AArch64/complex-copy-noneon.ll b/test/CodeGen/AArch64/complex-copy-noneon.ll index 4ae5478..b7c7043 100644 --- a/test/CodeGen/AArch64/complex-copy-noneon.ll +++ b/test/CodeGen/AArch64/complex-copy-noneon.ll @@ -8,13 +8,13 @@ define void @store_combine() nounwind { %src = alloca { double, double }, align 8 %dst = alloca { double, double }, align 8 - %src.realp = getelementptr inbounds { double, double }* %src, i32 0, i32 0 - %src.real = load double* %src.realp - %src.imagp = getelementptr inbounds { double, double }* %src, i32 0, i32 1 - %src.imag = load double* %src.imagp + %src.realp = getelementptr inbounds { double, double }, { double, double }* %src, i32 0, i32 0 + %src.real = load double, double* %src.realp + %src.imagp = getelementptr inbounds { double, double }, { double, double }* %src, i32 0, i32 1 + %src.imag = load double, double* %src.imagp - %dst.realp = getelementptr inbounds { double, double }* %dst, i32 0, i32 0 - %dst.imagp = getelementptr inbounds { double, double }* %dst, i32 0, i32 1 + %dst.realp = getelementptr inbounds { double, double }, { double, double }* %dst, i32 0, i32 0 + %dst.imagp = getelementptr inbounds { double, double }, { double, double }* %dst, i32 0, i32 1 store double %src.real, double* %dst.realp store double %src.imag, double* %dst.imagp ret void |