[PATCH] D58614: Fixed a typo in the test s/CEHCK/CHECK/
Dmitri Gribenko via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Thu Feb 28 02:56:50 PST 2019
This revision was automatically updated to reflect the committed changes.
Closed by commit rL355079: Fixed a typo in the test s/CEHCK/CHECK/ (authored by gribozavr, committed by ).
Changed prior to commit:
https://reviews.llvm.org/D58614?vs=188148&id=188697#toc
Repository:
rL LLVM
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D58614/new/
https://reviews.llvm.org/D58614
Files:
llvm/trunk/test/CodeGen/PowerPC/inlineasm-vsx-reg.ll
Index: llvm/trunk/test/CodeGen/PowerPC/inlineasm-vsx-reg.ll
===================================================================
--- llvm/trunk/test/CodeGen/PowerPC/inlineasm-vsx-reg.ll
+++ llvm/trunk/test/CodeGen/PowerPC/inlineasm-vsx-reg.ll
@@ -4,6 +4,7 @@
%0 = tail call { i32, <4 x float> } asm "xxsldwi ${1:x},${2:x},${2:x},3;\0Axscvspdp ${1:x},${1:x};\0Afctiw $1,$1;\0Amfvsrd $0,${1:x};\0A", "=r,=&^wa,^wa"(<4 x float> %__A)
%asmresult = extractvalue { i32, <4 x float> } %0, 0
ret i32 %asmresult
+; CHECK-LABEL: foo:
; CHECK: #APP
; CHECK: xxsldwi vs0, v2, v2, 3
; CHECK: xscvspdp f0, f0
@@ -18,19 +19,21 @@
%asmresult = extractvalue { i32, <4 x float> } %0, 0
ret i32 %asmresult
+; CHECK-LABEL: foo1:
; CHECK: #APP
; CHECK: xxsldwi vs0, v2, v2, 3
; CHECK: xscvspdp f0, f0
-; CEHCK: fctiw f0, f0
+; CHECK: fctiw f0, f0
; CHECK: mffprd r3, f0
-; CEHCK: extsw r3, r3
; CHECK: #NO_APP
+; CHECK: extsw r3, r3
}
define double @test() {
entry:
%0 = tail call double asm "mtvsrd ${0:x}, 1", "=^ws,~{f0},~{f1},~{f2},~{f3},~{f4},~{f5},~{f6},~{f7},~{f8},~{f9},~{f10},~{f11},~{f12},~{f13},~{f14}"()
ret double %0
+; CHECK-LABEL: test:
; CHECK: #APP
; CHECK: mtvsrd v2, r1
; CHECK: #NO_APP
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D58614.188697.patch
Type: text/x-patch
Size: 1231 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20190228/0c8d9b42/attachment.bin>
More information about the llvm-commits
mailing list