1 ; RUN: llc -mtriple=aarch64-linux-gnu < %s | FileCheck -check-prefix=LINUX %s
2 ; RUN: llc -mtriple=aarch64-apple-macos10.9 < %s | FileCheck -check-prefix=APPLE %s
3 ; RUN: llc -mtriple=aarch64-apple-ios7.0 < %s | FileCheck -check-prefix=APPLE %s
4 ; RUN: llc -mtriple=aarch64-apple-tvos7.0 < %s | FileCheck -check-prefix=APPLE %s
5 ; RUN: llc -mtriple=aarch64-apple-watchos7.0 < %s | FileCheck -check-prefix=APPLE %s
6 ; RUN: llc -mtriple=aarch64-apple-xros7.0 < %s | FileCheck -check-prefix=APPLE %s
7 ; RUN: llc -mtriple=aarch64-apple-tvos6.0 < %s | FileCheck -check-prefix=APPLE %s
8 ; RUN: llc -mtriple=aarch64-apple-xros6.0 < %s | FileCheck -check-prefix=APPLE %s
9 ; RUN: llc -mtriple=aarch64-apple-xros1.0 < %s | FileCheck -check-prefix=APPLE %s
10 ; RUN: llc -mtriple=arm64-apple-driverkit < %s | FileCheck -check-prefix=APPLE %s
11 ; RUN: llc -mtriple=arm64-apple-driverkit1.0 < %s | FileCheck -check-prefix=APPLE %s
12 ; RUN: llc -mtriple=arm64-apple-driverkit24.0 < %s | FileCheck -check-prefix=APPLE %s
13 ; RUN: llc -mtriple=arm64-apple-bridgeos < %s | FileCheck -check-prefix=BRIDGEOS %s
14 ; RUN: llc -mtriple=arm64-apple-bridgeos1.0 < %s | FileCheck -check-prefix=BRIDGEOS %s
15 ; RUN: llc -mtriple=arm64-apple-bridgeos9.0 < %s | FileCheck -check-prefix=BRIDGEOS %s
17 ; RUN: not llc -mtriple=aarch64-apple-macos10.8 -filetype=null %s 2>&1 | FileCheck -check-prefix=ERR %s
18 ; RUN: not llc -mtriple=aarch64-apple-ios6.0 -filetype=null %s 2>&1 | FileCheck -check-prefix=ERR %s
20 ; Check exp10/exp10f is emitted as __exp10/__exp10f on assorted systems.
22 ; ERR: no libcall available for fexp10
24 define float @test_exp10_f32(float %x) {
25 ; LINUX-LABEL: test_exp10_f32:
27 ; LINUX-NEXT: b exp10f
29 ; APPLE-LABEL: test_exp10_f32:
31 ; APPLE-NEXT: b ___exp10f
33 ; BRIDGEOS-LABEL: test_exp10_f32:
35 ; BRIDGEOS-NEXT: b __exp10f
37 %ret = call float @llvm.exp10.f32(float %x)
41 define double @test_exp10_f64(double %x) {
42 ; LINUX-LABEL: test_exp10_f64:
46 ; APPLE-LABEL: test_exp10_f64:
48 ; APPLE-NEXT: b ___exp10
50 ; BRIDGEOS-LABEL: test_exp10_f64:
52 ; BRIDGEOS-NEXT: b __exp10
54 %ret = call double @llvm.exp10.f64(double %x)