Fixed test after r347110

Comments in llc outputs are printed differently on different
platforms, some with '#', some with '##'. Removed non-essential
part of the checks.

llvm-svn: 347112
This commit is contained in:
Stanislav Mekhanoshin 2018-11-16 23:40:04 +00:00
parent 7e937c4226
commit c3214ad1dd
1 changed files with 2 additions and 7 deletions

View File

@ -1,11 +1,8 @@
; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
; RUN: llc < %s | FileCheck %s
define void @select_undef_n1(float addrspace(1)* %a, i32 %c) {
; CHECK-LABEL: select_undef_n1:
; CHECK: # %bb.0:
; CHECK-NEXT: movl $1065353216, (%rdi) # imm = 0x3F800000
; CHECK-NEXT: retq
; CHECK: movl $1065353216, (%rdi)
%cc = icmp eq i32 %c, 0
%sel = select i1 %cc, float 1.000000e+00, float undef
store float %sel, float addrspace(1)* %a
@ -14,9 +11,7 @@ define void @select_undef_n1(float addrspace(1)* %a, i32 %c) {
define void @select_undef_n2(float addrspace(1)* %a, i32 %c) {
; CHECK-LABEL: select_undef_n2:
; CHECK: # %bb.0:
; CHECK-NEXT: movl $1065353216, (%rdi) # imm = 0x3F800000
; CHECK-NEXT: retq
; CHECK: movl $1065353216, (%rdi)
%cc = icmp eq i32 %c, 0
%sel = select i1 %cc, float undef, float 1.000000e+00
store float %sel, float addrspace(1)* %a