2011-02-22 08:19:28 +01:00
|
|
|
; RUN: llc < %s -mtriple=x86_64-linux | FileCheck %s
|
|
|
|
; RUN: llc < %s -mtriple=x86_64-win64 | FileCheck %s
|
2009-10-16 22:59:35 +02:00
|
|
|
; rdar://7304838
|
|
|
|
|
|
|
|
; CodeGenPrepare should move the zext into the block with the load
|
|
|
|
; so that SelectionDAG can select it with the load.
|
|
|
|
|
2011-02-22 08:19:28 +01:00
|
|
|
; CHECK: movzbl ({{%rdi|%rcx}}), %eax
|
2009-10-16 22:59:35 +02:00
|
|
|
|
|
|
|
define void @foo(i8* %p, i32* %q) {
|
|
|
|
entry:
|
|
|
|
%t = load i8* %p
|
|
|
|
%a = icmp slt i8 %t, 20
|
|
|
|
br i1 %a, label %true, label %false
|
|
|
|
true:
|
|
|
|
%s = zext i8 %t to i32
|
|
|
|
store i32 %s, i32* %q
|
|
|
|
ret void
|
|
|
|
false:
|
|
|
|
ret void
|
|
|
|
}
|