2007-01-13 06:06:52 +01:00
|
|
|
; An integer truncation to i1 should be done with an and instruction to make
|
2006-11-27 02:05:10 +01:00
|
|
|
; sure only the LSBit survives. Test that this is the case both for a returned
|
|
|
|
; value and as the operand of a branch.
|
2007-04-16 17:31:49 +02:00
|
|
|
; RUN: llvm-as < %s | llc -march=x86 | grep {\\(and\\)\\|\\(test.*\\\$1\\)} | \
|
2008-11-10 18:28:30 +01:00
|
|
|
; RUN: count 5
|
2006-12-31 07:02:00 +01:00
|
|
|
|
2007-07-20 01:13:04 +02:00
|
|
|
define i1 @test1(i32 %X) zeroext {
|
2007-01-13 06:06:52 +01:00
|
|
|
%Y = trunc i32 %X to i1
|
|
|
|
ret i1 %Y
|
2006-11-27 02:05:10 +01:00
|
|
|
}
|
|
|
|
|
2007-01-26 09:25:06 +01:00
|
|
|
define i1 @test2(i32 %val, i32 %mask) {
|
2006-11-27 02:05:10 +01:00
|
|
|
entry:
|
2007-02-02 03:16:23 +01:00
|
|
|
%shifted = ashr i32 %val, %mask
|
2006-12-31 07:02:00 +01:00
|
|
|
%anded = and i32 %shifted, 1
|
2007-01-13 06:06:52 +01:00
|
|
|
%trunced = trunc i32 %anded to i1
|
|
|
|
br i1 %trunced, label %ret_true, label %ret_false
|
2006-11-27 02:05:10 +01:00
|
|
|
ret_true:
|
2007-01-13 06:06:52 +01:00
|
|
|
ret i1 true
|
2006-11-27 02:05:10 +01:00
|
|
|
ret_false:
|
2007-01-13 06:06:52 +01:00
|
|
|
ret i1 false
|
2006-11-27 02:05:10 +01:00
|
|
|
}
|
|
|
|
|
2007-01-26 09:25:06 +01:00
|
|
|
define i32 @test3(i8* %ptr) {
|
2006-12-31 07:02:00 +01:00
|
|
|
%val = load i8* %ptr
|
2007-01-13 06:06:52 +01:00
|
|
|
%tmp = trunc i8 %val to i1
|
|
|
|
br i1 %tmp, label %cond_true, label %cond_false
|
2006-11-27 02:05:10 +01:00
|
|
|
cond_true:
|
2006-12-31 07:02:00 +01:00
|
|
|
ret i32 21
|
2006-11-27 02:05:10 +01:00
|
|
|
cond_false:
|
2006-12-31 07:02:00 +01:00
|
|
|
ret i32 42
|
2006-11-27 02:05:10 +01:00
|
|
|
}
|
2006-11-27 20:54:23 +01:00
|
|
|
|
2007-01-26 09:25:06 +01:00
|
|
|
define i32 @test4(i8* %ptr) {
|
2007-01-13 06:06:52 +01:00
|
|
|
%tmp = ptrtoint i8* %ptr to i1
|
|
|
|
br i1 %tmp, label %cond_true, label %cond_false
|
2006-11-27 20:54:23 +01:00
|
|
|
cond_true:
|
2006-12-31 07:02:00 +01:00
|
|
|
ret i32 21
|
2006-11-27 20:54:23 +01:00
|
|
|
cond_false:
|
2006-12-31 07:02:00 +01:00
|
|
|
ret i32 42
|
2006-11-27 20:54:23 +01:00
|
|
|
}
|
|
|
|
|
2007-01-26 09:25:06 +01:00
|
|
|
define i32 @test6(double %d) {
|
2007-01-13 06:06:52 +01:00
|
|
|
%tmp = fptosi double %d to i1
|
|
|
|
br i1 %tmp, label %cond_true, label %cond_false
|
2006-11-27 20:54:23 +01:00
|
|
|
cond_true:
|
2006-12-31 07:02:00 +01:00
|
|
|
ret i32 21
|
2006-11-27 20:54:23 +01:00
|
|
|
cond_false:
|
2006-12-31 07:02:00 +01:00
|
|
|
ret i32 42
|
2006-11-27 20:54:23 +01:00
|
|
|
}
|
2006-12-31 07:02:00 +01:00
|
|
|
|