Dan Gohman | 0a06310 | 2009-09-08 23:54:48 +0000 | [diff] [blame] | 1 | ; RUN: llc < %s -march=x86 | grep movzbl | count 1 |
Evan Cheng | e2a2f70 | 2009-03-25 20:30:19 +0000 | [diff] [blame] | 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 | } |