OSDN Git Service

Fixed test after r347110
authorStanislav Mekhanoshin <Stanislav.Mekhanoshin@amd.com>
Fri, 16 Nov 2018 23:40:04 +0000 (23:40 +0000)
committerStanislav Mekhanoshin <Stanislav.Mekhanoshin@amd.com>
Fri, 16 Nov 2018 23:40:04 +0000 (23:40 +0000)
Comments in llc outputs are printed differently on different
platforms, some with '#', some with '##'. Removed non-essential
part of the checks.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@347112 91177308-0d34-0410-b5e6-96231b3b80d8

test/CodeGen/Generic/dag-combine-select-undef.ll

index bc74190..2ed636b 100644 (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