brintos

brintos / llvm-project-archived public Read only

0
0
Text · 493 B · fb74fe4 Raw
14 lines · plain
1; RUN: llc -verify-machineinstrs -mtriple=aarch64-apple-ios -o - %s | FileCheck %s2; RUN: llc -O0 -verify-machineinstrs -mtriple=aarch64-apple-ios -o - %s | FileCheck %s3; RUN: llc -verify-machineinstrs -mtriple=arm64_32-apple-ios -o - %s | FileCheck %s4; RUN: llc -O0 -verify-machineinstrs -mtriple=arm64_32-apple-ios -o - %s | FileCheck %s5 6; CHECK: t17; CHECK: fadd s0, s0, s18; CHECK: ret9define swiftcc float @t1(float %a, float %b) {10entry:11  %add = fadd float %a, %b12  ret float %add13}14