Skip to content

Commit 94913b8

Browse files
svenvhvmaksimo
authored andcommitted
Fix invalid substitutions in test
%break etc are not valid substitutions for llvm-lit. Original commit: KhronosGroup/SPIRV-LLVM-Translator@3b00f15
1 parent 9b1ece5 commit 94913b8

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

llvm-spirv/test/llvm-intrinsics/fmuladd.ll

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
; RUN: llvm-as %s -o %t.bc
2-
; RUN: llvm-spirv %t.bc -o %default.spv
3-
; RUN: llvm-spirv %t.bc --spirv-replace-fmuladd-with-ocl-mad=true -o %replace.spv
4-
; RUN: llvm-spirv %t.bc --spirv-replace-fmuladd-with-ocl-mad=false -o %break.spv
5-
; RUN: spirv-val %replace.spv
6-
; RUN: spirv-val %break.spv
7-
; RUN: llvm-spirv %default.spv -to-text -o - | FileCheck %s --check-prefixes=COMMON,REPLACE
8-
; RUN: llvm-spirv %replace.spv -to-text -o - | FileCheck %s --check-prefixes=COMMON,REPLACE
9-
; RUN: llvm-spirv %break.spv -to-text -o - | FileCheck %s --check-prefixes=COMMON,BREAK
2+
; RUN: llvm-spirv %t.bc -o %t-default.spv
3+
; RUN: llvm-spirv %t.bc --spirv-replace-fmuladd-with-ocl-mad=true -o %t-replace.spv
4+
; RUN: llvm-spirv %t.bc --spirv-replace-fmuladd-with-ocl-mad=false -o %t-break.spv
5+
; RUN: spirv-val %t-replace.spv
6+
; RUN: spirv-val %t-break.spv
7+
; RUN: llvm-spirv %t-default.spv -to-text -o - | FileCheck %s --check-prefixes=COMMON,REPLACE
8+
; RUN: llvm-spirv %t-replace.spv -to-text -o - | FileCheck %s --check-prefixes=COMMON,REPLACE
9+
; RUN: llvm-spirv %t-break.spv -to-text -o - | FileCheck %s --check-prefixes=COMMON,BREAK
1010

1111
; COMMON-NOT: llvm.fmuladd
1212

0 commit comments

Comments
 (0)