Home | History | Annotate | Download | only in X86
      1 ; RUN: llc < %s -march=x86 | grep movzbl | count 1
      2 ; rdar://6699246
      3 
      4 define signext i8 @t1(i8* %A) nounwind readnone ssp {
      5 entry:
      6         %0 = icmp ne i8* %A, null
      7         %1 = zext i1 %0 to i8
      8         ret i8 %1
      9 }
     10 
     11 define i8 @t2(i8* %A) nounwind readnone ssp {
     12 entry:
     13         %0 = icmp ne i8* %A, null
     14         %1 = zext i1 %0 to i8
     15         ret i8 %1
     16 }
     17