Souper says:
; Function: fn1
%0:i8 = var
%1:i32 = zext %0
%2:i32 = subnsw 0:i32, %1
%3:i1 = slt %2, 1:i32
cand %3 1:i1
COMMAND: /home/regehr/souper/build/souper -stp-path=/usr/local/bin/stp reduce_704/foo.bc
LLVM says:
define void @fn1() #0 {
entry:
%0 = load i8* @a, align 1, !tbaa !1
%conv = zext i8 %0 to i32
%sub = sub nsw i32 0, %conv
%cmp = icmp slt i32 %sub, 1
%conv1 = zext i1 %cmp to i32
store i32 %conv1, i32* @b, align 4, !tbaa !4
ret void
}
COMMAND: /home/regehr/souper/third_party/llvm/Debug/bin/clang -c -w -emit-llvm -O3 reduce_704/foo.c -o reduce_704/foo.bc
C source code:
unsigned char a;
int b;
void fn1() { b = 1 > -a; }
x86-64 from LLVM:
fn1: # @fn1
movzbl a(%rip), %eax
negl %eax
testl %eax, %eax
setle %al
movzbl %al, %eax
movl %eax, b(%rip)
retq
COMMAND: /home/regehr/souper/third_party/llvm/Debug/bin/clang -w -O3 reduce_704/foo.c -S -o -
x86-64 from GCC:
fn1:
movl $1, b(%rip)
ret
COMMAND: gcc -w -O3 reduce_704/foo.c -S -o -