Skip to content

Commit fe49f8b

Browse files
committed
Address test failures caused by main branch merge.
1 parent 9768733 commit fe49f8b

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

llvm/test/CodeGen/SPIRV/extensions/SPV_KHR_float_controls2/exec_mode.ll

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
; RUN: llc -verify-machineinstrs -O0 -mtriple=spirv64-unknown-unknown --spirv-ext=+SPV_KHR_float_controls2 %s -o - | FileCheck %s
2-
; RUN: %if spirv-tools %{ llc -O0 -mtriple=spirv64-unknown-unknown --spirv-ext=+SPV_KHR_float_controls2 %s -o - -filetype=obj | spirv-val %}
1+
; RUN: llc -verify-machineinstrs -O0 -mtriple=spirv64-unknown-unknown --spirv-ext=+SPV_KHR_float_controls2,+SPV_KHR_bfloat16 %s -o - | FileCheck %s
2+
; RUN: %if spirv-tools %{ llc -O0 -mtriple=spirv64-unknown-unknown --spirv-ext=+SPV_KHR_float_controls2,+SPV_KHR_bfloat16 %s -o - -filetype=obj | spirv-val %}
33

44
; CHECK-DAG: Capability FloatControls2
55
; CHECK: Extension "SPV_KHR_float_controls2"

llvm/test/CodeGen/SPIRV/extensions/SPV_KHR_float_controls2/exec_mode2.ll

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ entry:
1414
ret void
1515
}
1616

17-
define dso_local dllexport spir_kernel void @k_float_controls_all(half %h, bfloat %b, float %f, double %d) {
17+
define dso_local dllexport spir_kernel void @k_float_controls_all(half %h, float %f, double %d) {
1818
entry:
1919
ret void
2020
}
@@ -24,7 +24,7 @@ entry:
2424
ret void
2525
}
2626

27-
define dso_local dllexport spir_kernel void @k_float_controls_all_v(<2 x half> %h, <2 x bfloat> %b, <2 x float> %f, <2 x double> %d) {
27+
define dso_local dllexport spir_kernel void @k_float_controls_all_v(<2 x half> %h, <2 x float> %f, <2 x double> %d) {
2828
entry:
2929
ret void
3030
}

llvm/test/CodeGen/SPIRV/extensions/SPV_KHR_float_controls2/exec_mode3.ll

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ entry:
4949
ret void
5050
}
5151

52-
define dso_local dllexport spir_kernel void @k_float_controls_all(half %h, bfloat %b, float %f, double %d) {
52+
define dso_local dllexport spir_kernel void @k_float_controls_all(half %h, float %f, double %d) {
5353
entry:
5454
; CHECK-DAG: %[[#addResH]] = OpFAdd %[[#HALF_TYPE]]
5555
; CHECK-DAG: %[[#addResF]] = OpFAdd %[[#FLOAT_TYPE]]
@@ -67,7 +67,7 @@ entry:
6767
ret void
6868
}
6969

70-
define dso_local dllexport spir_kernel void @k_float_controls_all_v(<2 x half> %h, <2 x bfloat> %b, <2 x float> %f, <2 x double> %d) {
70+
define dso_local dllexport spir_kernel void @k_float_controls_all_v(<2 x half> %h, <2 x float> %f, <2 x double> %d) {
7171
entry:
7272
; CHECK-DAG: %[[#addResH_V]] = OpFAdd %[[#HALF_V_TYPE]]
7373
; CHECK-DAG: %[[#addResF_V]] = OpFAdd %[[#FLOAT_V_TYPE]]

0 commit comments

Comments
 (0)