brintos

brintos / llvm-project-archived public Read only

0
0
Text · 1.2 KiB · 243302d Raw
30 lines · plain
1// RUN: tco --target=aarch64-unknown-linux-gnu %s | FileCheck %s --check-prefix=AARCH642 3// AARCH64-LABEL: define { fp128, fp128 } @gen16()4func.func @gen16() -> complex<f128> {5  // AARCH64: %[[VAL1:.*]] = alloca { fp128, fp128 }, i64 1, align 166  %1 = fir.undefined complex<f128>7  %2 = arith.constant 1.0 : f1288  %3 = arith.constant -4.0 : f1289  %c0 = arith.constant 0 : i3210  // AARCH64: store { fp128, fp128 } { fp128 0xL0000000000000000C001000000000000, fp128 0xL00000000000000003FFF000000000000 }, ptr %[[VAL1]], align 1611  %4 = fir.insert_value %1, %3, [0 : index] : (complex<f128>, f128) -> complex<f128>12  %c1 = arith.constant 1 : i3213  %5 = fir.insert_value %4, %2, [1 : index] : (complex<f128>, f128) -> complex<f128>14  // AARCH64: %[[VAL2:.*]] = load { fp128, fp128 }, ptr %[[VAL1]], align 1615  // AARCH64: ret { fp128, fp128 } %[[VAL2]]16  return %5 : complex<f128>17}18 19// AARCH64: declare void @sink16([2 x fp128])20func.func private @sink16(complex<f128>) -> ()21 22// AARCH64-LABEL: define void @call16()23func.func @call16() {24  // AARCH64: = call { fp128, fp128 } @gen16()25  %1 = fir.call @gen16() : () -> complex<f128>26  // AARCH64: call void @sink16([2 x fp128] %27  fir.call @sink16(%1) : (complex<f128>) -> ()28  return29}30