7
7
; RUN: llc -mtriple=aarch64-apple-tvos6.0 < %s | FileCheck -check-prefix=APPLE %s
8
8
; RUN: llc -mtriple=aarch64-apple-xros6.0 < %s | FileCheck -check-prefix=APPLE %s
9
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=MISSED %s
11
- ; RUN: llc -mtriple=arm64-apple-driverkit1.0 < %s | FileCheck -check-prefix=MISSED %s
12
- ; RUN: llc -mtriple=arm64-apple-driverkit24.0 < %s | FileCheck -check-prefix=MISSED %s
13
- ; RUN: llc -mtriple=arm64-apple-bridgeos < %s | FileCheck -check-prefix=LINUX %s
14
- ; RUN: llc -mtriple=arm64-apple-bridgeos1.0 < %s | FileCheck -check-prefix=LINUX %s
15
- ; RUN: llc -mtriple=arm64-apple-bridgeos9.0 < %s | FileCheck -check-prefix=LINUX %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
16
16
17
17
; RUN: not llc -mtriple=aarch64-apple-macos10.8 -filetype=null %s 2>&1 | FileCheck -check-prefix=ERR %s
18
18
; RUN: not llc -mtriple=aarch64-apple-ios6.0 -filetype=null %s 2>&1 | FileCheck -check-prefix=ERR %s
@@ -30,9 +30,9 @@ define float @test_exp10_f32(float %x) {
30
30
; APPLE: ; %bb.0:
31
31
; APPLE-NEXT: b ___exp10f
32
32
;
33
- ; MISSED -LABEL: test_exp10_f32:
34
- ; MISSED : ; %bb.0:
35
- ; MISSED -NEXT: b _exp10f
33
+ ; BRIDGEOS -LABEL: test_exp10_f32:
34
+ ; BRIDGEOS : // %bb.0:
35
+ ; BRIDGEOS -NEXT: b __exp10f
36
36
;
37
37
%ret = call float @llvm.exp10.f32 (float %x )
38
38
ret float %ret
@@ -47,9 +47,9 @@ define double @test_exp10_f64(double %x) {
47
47
; APPLE: ; %bb.0:
48
48
; APPLE-NEXT: b ___exp10
49
49
;
50
- ; MISSED -LABEL: test_exp10_f64:
51
- ; MISSED : ; %bb.0:
52
- ; MISSED -NEXT: b _exp10
50
+ ; BRIDGEOS -LABEL: test_exp10_f64:
51
+ ; BRIDGEOS : // %bb.0:
52
+ ; BRIDGEOS -NEXT: b __exp10
53
53
;
54
54
%ret = call double @llvm.exp10.f64 (double %x )
55
55
ret double %ret
0 commit comments